Hello! I am attempting to access the regression estimates I have stored in a stata .ster file and export these estimates into excel using matrices (saving estimates as local macros and exporting with matrix = `macro' and putexcel).
I ran regressions of the form:
eststo `outcome'_8: quietly regress `outcome' nurse lawyer doc `controls'
quietly estadd local fake "No", replace
quietly estadd local fake2 "No", replace
estadd ysumm, replace
Previously I have simply output these results using esttab (esttab `outcome'_8 using "$temp/fake_`outcome'.tex", replace label s(fake fake2 ymean)). And the mean of the dependent var (saved using estadd ysumm, replace) gets output successfully (along with the other scalars which aren't of interest to me right now). However now that I am saving estimates to a .ster file, I have not been able to figure out how view or access the saved estimates of ysumm / ymean (the mean of the dependent var) I saved.
I have tried using "ereturn list", and I see the following once I open the .ster file (and confirm that my regression results are successfully stored in there) and type ereturn list:
. ereturn list
scalars:
e(N_clust) = 1668466
e(N) = 5154055
e(df_m) = 828
e(df_r) = 1668465
e(F) = 826.8644975199667
e(r2) = .2104039008850213
e(rmse) = .3394628972403003
e(mss) = 158238.6647468456
e(rss) = 593832.3001033629
e(r2_a) = .2102770317024807
e(ll) = -1744480.008596252
e(ll_0) = -2353260.830340802
e(rank) = 829
macros:
e(cmd) : "regress"
e(estimates_title) : "est1"
e(vcetype) : "Robust"
e(estat_cmd) : "regress_estat"
e(model) : "ols"
e(predict) : "regres_p"
e(properties) : "b V"
e(depvar) : "has_drug_inf"
e(vce) : "cluster"
e(marginsok) : "XB default"
e(title) : "Linear regression"
e(cmdline) : "regress has_fake_outcome nurse lawyer doc_f.."
matrices:
e(b) : 1 x 837
e(V) : 837 x 837
e(V_modelbased) : 837 x 837
Can someone please let me know how I can access the ysumm (or ymean) that I saved using "estadd ysumm" and save this as a local macro or variable so that I can export it to excel along with the other regression estimates?
Thank you!
Related Posts with Accessing estadd ysumm estimates from .ster file and exporting to excel
Predicted probabilities and actual valuesI want to calculate the sensitivity and specificity of a diagnostic test for TB. The index test is a…
extracting the values of a variable as a local macro in the order that they appear in the dataHi. I'm new to Statalist. Could anyone help me with extracting the values of a variable as a local m…
Panel model with fixed time effects, residuals not normally distributedHello, everyone, nice to be member of this group :-) First of all, I would like to apologize in adv…
-import delimited- and handling utf-8 encoding Can one determine the proper encoding for a text file to specify when using -import delimited-? I'…
Spatial panel vector auto-regressive (VAR) model OR Spatial panel vector error correction model codes (VECM) in stata?I am looking for codes/Package available for Spatial panel VAR model or Spatial panel VECM model in …
Subscribe to:
Post Comments (Atom)
0 Response to Accessing estadd ysumm estimates from .ster file and exporting to excel
Post a Comment