I tried to re-run an older file (dating to 2020) that estimated means, stored the results, and utilized them in the coefplot procedure. But I now get an error that I don't recall getting before. The setup is simple:
use https://www.stata-press.com/data/r17/auto
sum price mpg rep78 if foreign==1
estimate store m1
This returns:
. sum price mpg rep78 if foreign==1
Variable | Obs Mean Std. dev. Min Max
-------------+---------------------------------------------------------
price | 22 6384.682 2621.915 3748 12990
mpg | 22 24.77273 6.611187 14 41
rep78 | 21 4.285714 .7171372 3 5
. estimate store m1
last estimation results not found, nothing to store
r(301);
I'm guessing that I'm missing something simple. Any advice welcome.
use https://www.stata-press.com/data/r17/auto
sum price mpg rep78 if foreign==1
estimate store m1
This returns:
. sum price mpg rep78 if foreign==1
Variable | Obs Mean Std. dev. Min Max
-------------+---------------------------------------------------------
price | 22 6384.682 2621.915 3748 12990
mpg | 22 24.77273 6.611187 14 41
rep78 | 21 4.285714 .7171372 3 5
. estimate store m1
last estimation results not found, nothing to store
r(301);
I'm guessing that I'm missing something simple. Any advice welcome.
Comment