Announcement

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

  • summary statistics with standard error in parentheses

    I want to make a table of summary statistics with standard error in parentheses, as well as the observations for each variables by group. I tried to use outsum. It does not provide the observations for each variables.

    Code:
    sysuse auto
    outsum price mpg using auto1
    type auto1.out
    replace price = . in 1
    outsum price mpg using auto1,append
Working...
X