My question is straightforward. Could Stata save regression results so that I do not have to re-run the model when trying to use margins and marginsplot commands?
-
Login or Register
- Log in with
use https://www.stata-press.com/data/r17/nhanes2, clear reg bpsystol agegrp##sex estimates save "$results/nhanes2_model_results", replace estimates use "$results/nhanes2_model_results" reg margins agegrp marginsplot
use https://www.stata-press.com/data/r17/nhanes2, clear reg bpsystol agegrp##sex estimates save "nhanes2_model_results", replace estimates use "nhanes2_model_results" estimates esample: bpsystol agegrp sex margins agegrp marginsplot
use https://www.stata-press.com/data/r17/nhanes2, clear reg bpsystol agegrp##sex estimates save "nhanes2_model_results", replace estimates use "nhanes2_model_results" estimates esample: bpsystol agegrp sex margins agegrp marginsplot
Comment