I am running a bunch of regressions in a loop and am storing them using eststo. This works like a charm, but as my loops become many and large, I consistently run into two problems:
1) The eststo names get too long as I add more and more loops. The error message looks like this:
_est_example_reallylongeststonamethatisreallylong invalid name
r(7);
2) I can only store 300 estimates. The error message looks like this:
system limit exceeded
you need to drop one or more models
--(then it lists the models I have stored)--
r(1000);
My question is if it is possible to allow for longer eststo names, and if I can increase the 300 limit to a larger number. If not, is there another way to store hundreds of estimation results with (effectively) no limits on name lengths?
1) The eststo names get too long as I add more and more loops. The error message looks like this:
_est_example_reallylongeststonamethatisreallylong invalid name
r(7);
2) I can only store 300 estimates. The error message looks like this:
system limit exceeded
you need to drop one or more models
--(then it lists the models I have stored)--
r(1000);
My question is if it is possible to allow for longer eststo names, and if I can increase the 300 limit to a larger number. If not, is there another way to store hundreds of estimation results with (effectively) no limits on name lengths?
Comment