Good to se that your update finally worked.
> esample() invalid
>
> r(221);
I have encountered the same problem when I mereged dataset together with results saved in other datasets. I guess it would be a valid error message if observations were droped or added but that was not the case for me. I finally got it to work by doing the following before merging another dataset.
. estsave , from(recently_merged_result)
. drop recently_merged_result
. estsave , gen(recently_merged_result)
As for your other problem, you might want to try a Nick Cox program that have great potential -makematrix- (haven't used it for some time though). This program creates and displays a matrix with reults of your choice from several runs. I don't have access to Stata right now so I cant give you more details.
. ssc install makematrix
Michael
----- Original Message -----
From: [email protected]
Date: Tuesday, July 13, 2004 12:06 pm
Subject: st: Accessing many estimation results
> I am trying to store and access the estimation results from many
> regressionruns that I am conducting. I have tried using estsave
> two different ways,
> both with problems:
>
>
>
> 1) I have given the variable created by estsave a single name.
> This has the
> obvious problem of displaying only the results from the latest
> regressionrun. The code I used is
>
> regress log_BMI year midage midage2 midage3 ageyear if id == `svy'
>
> estsave , gen(reg_1)
>
>
>
> 2) I have given the variable created by estsave a new name for
> each run.
> The code I used is
>
>
>
> regress log_BMI year midage midage2 midage3 ageyear if id == `svy'
>
> estsave , gen(reg_`svy')
>
>
>
> However, when I try to access the results of a particular run, I
> get the
> following error
>
>
>
> . estsave , from(reg_1)
>
> esample() invalid
>
> r(221);
>
>
>
> How can I get around this problem? My ideal is to have all the
> regressioncoefficients together in a way that allows me to quickly
> cut and paste them
> for display purposes.
>
>
>
> Thanks!
>
>
>
>
>
>
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/