Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Need Help to Produce a Descriptive Statistics Table

    Hello

    I created a regression table and now I would like to get descriptive data for the variables in my regression. I do not want general descriptive information for each variable, but specific descriptive info for the variables used. For instance, in my model I have income. The variable has 2310 total observations in my data set, but in my regression (with other variables) the observations are limited to 1370. I want to get descriptive information for this subset (1370) without having to drop all missing values for all variables I am using in my regression. Any suggestions?

    I've searched the internet to find a solution, but I have not found anything.

    Thanks!

  • #2
    One answer at http://www.statalist.org/forums/foru...atistics-table

    Comment


    • #3
      Code:
      sysuse auto
      regress mpg weight rep78
      summarize mpg weight rep78 if e(sample)

      Comment

      Working...
      X