Differences between revisions 1 and 2
Revision 1 as of 2023-06-09 14:23:10
Size: 1358
Comment:
Revision 2 as of 2023-06-09 14:23:32
Size: 1324
Comment:
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
. use https://www.stata-press.com/data/r18/auto . webuse auto

Stata Inspect

The inspect command describes a numeric variable.


Usage

inspect foo
insepct foo if bar==1
insecpt foo in 1/10

The output includes:

  • The variable label
  • A histogram showing rough distribution of values, as well as minimum and maximum values
  • A count of unique values
  • A crosstabulation of aggregated descriptive statistics: categories of negative, zero, and positive values against categories of integer and non-integer values
  • A count of missing values

As an example:

. webuse auto
(1978 automobile data)

. inspect mpg
mpg:  Mileage (mpg)                     Number of observations
                                     Total    Integers    Nonintegers
       #                  Negative       -           -              -
       #                  Zero           -           -              -
       #                  Positive      74          74              -
   #   #
   #   #   #              Total         74          74              -
   #   #   #   #   .      Missing        -
12                   41                 74
  (21 unique values)


See also

https://www.stata.com/manuals/dinspect.pdf


CategoryRicottone

Stata/Inspect (last edited 2023-06-09 14:23:32 by DominicRicottone)