|
⇤ ← Revision 1 as of 2023-06-09 13:55:25
Size: 661
Comment:
|
← Revision 2 as of 2025-10-24 16:58:40 ⇥
Size: 659
Comment: Rewrite
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| The '''`describe`''' command describes data in memory. | '''`-describe-`''' describes the active dataset. |
| Line 13: | Line 13: |
| Used alone, `describe` lists the names and details about all variables in memory. | Used alone, `-describe-` lists the names and details about all variables in memory. |
| Line 28: | Line 28: |
| to create a new dataset describing an external one, try: | To create a new dataset describing an external one, try: |
| Line 40: | Line 40: |
| [[https://www.stata.com/manuals/ddescribe.pdf|Stata manual for describe]] | [[https://www.stata.com/manuals/ddescribe.pdf|Stata manual for -describe-]] |
Stata Describe
-describe- describes the active dataset.
Contents
Usage
Used alone, -describe- lists the names and details about all variables in memory.
describe describe foo bar baz
Use the fullnames option to prevent truncation of variable names.
To create a new dataset describing the current one, try:
describe, replace
To create a new dataset describing an external one, try:
describe using "foo.dta"
