Hello everyone,
I'm trying to run the below loop and store the estimates of each regression model; however, for some reason, the regression outputs are not stored. There is also no error, but simply as if the est store command is not being performed. Could anyone perhaps help out on this?
foreach j of varlist r_SMALLL - r_BIGH {
reg `j' r_a b c, robust
est store model_`j'
}
Thank you in advance!
I'm trying to run the below loop and store the estimates of each regression model; however, for some reason, the regression outputs are not stored. There is also no error, but simply as if the est store command is not being performed. Could anyone perhaps help out on this?
foreach j of varlist r_SMALLL - r_BIGH {
reg `j' r_a b c, robust
est store model_`j'
}
Thank you in advance!
Comment