Hello,
I have the following table which is produced using the following code.
I'd like to pull out any one of these results but I'm not sure how to do this. For example when I write 'display `e(mean)'' an error appears (no matrix found). Any ideas on how I can pull out these results? Also I'd like to pull them out rounded to a certain number of decimal places if it's possible to do that. Essentially I wanna store these results in a local macro.
Thanks,
Jad
I have the following table which is produced using the following code.
Code:
. estpost tabstat revenue_rl empend if year==2017, /// > listwise statistics(mean sd N) by(firm_type) column(statistics) Summary statistics: mean sd count for variables: revenue_rl empend by categories of: firm_type firm_type | e(mean) e(sd) e(count) -------------+--------------------------------- Foreign | revenue_rl | 402222.6 5995239 7616 empend | 514.9238 1986.279 7616 -------------+--------------------------------- Private | revenue_rl | 20261.36 226966.1 69817 empend | 31.99059 269.8946 69817 -------------+--------------------------------- State | revenue_rl | 338584 1886141 1307 empend | 388.6687 881.151 1307 -------------+--------------------------------- Total | revenue_rl | 62489.76 1895996 78740 empend | 84.62201 693.4873 78740
Thanks,
Jad
Comment