Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: Saving matrices with -simulate-
From 
 
Nick Cox <[email protected]> 
To 
 
[email protected] 
Subject 
 
Re: st: Saving matrices with -simulate- 
Date 
 
Sun, 8 May 2011 17:24:46 +0100 
I guess you could change your -myboot- so that it leaves extra stuff
somewhere else, e.g. using -postfile-.
On Sun, May 8, 2011 at 4:25 PM, Bert Jung <[email protected]> wrote:
> I am using -simulate- to write a bootstrap routine.  In addition to
> the usual statistics (coefficient estimates), I would like -simulate-
> to save additional information that my program returns as a matrix.
>
> In the following toy example, -myboot- returns the coefficients and a
> matrix "seed" with the random seed that I created inside the program.
> But "seed" is not saved in every bootstrap iteration; -simulate- only
> saves the coefficients.  (This is just for illustration, of course.)
>
> Thanks for any pointers.
>
> Best, Bert
>
>
>
> cap program drop myboot
> program define myboot, eclass
>
>        local seed = round( runiform()*1000000, 1 )
>        set seed `seed'
>
>        bsample
>
>        reg mpg rep78 trunk weight
>
>        mat seed = ( `seed' )
>        mat list seed
>
>        ereturn matrix seed=seed
>
> end
>
>
> sysuse auto, clear
>
> reg mpg rep78 trunk weight
> mat coeffs = e(b)
>
> simulate , reps(10): myboot
>
> ereturn list
*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/