switching stata output off; saving regression results
Posted: Tue Feb 07, 2012 10:58 am
I am trying to run a model (for a 1000 simulated datasets) from STATA with the runmlwin command.
The problem is although I have included the 'no pause' command, I still have to click 'more' on the STATA output for the models to continue running.
Is there any way of switching off the output viewer and simply getting the results (parameter estimates, their CIs, possible the MCMC quantiles, the p-value of the Wald test testing for the significance of each parameter) in an excel sheet or simply as extra columns on the stata file?
I am trying to run the following:
local i=1
while `i'<1001 {
runmlwin V`i' cons, level2 (clid:cons) level1 (serialno:) discrete(distribution(binomial) link(logit) denominator(cons) pql2) nopause
local i=`i'+1
}
The problem is although I have included the 'no pause' command, I still have to click 'more' on the STATA output for the models to continue running.
Is there any way of switching off the output viewer and simply getting the results (parameter estimates, their CIs, possible the MCMC quantiles, the p-value of the Wald test testing for the significance of each parameter) in an excel sheet or simply as extra columns on the stata file?
I am trying to run the following:
local i=1
while `i'<1001 {
runmlwin V`i' cons, level2 (clid:cons) level1 (serialno:) discrete(distribution(binomial) link(logit) denominator(cons) pql2) nopause
local i=`i'+1
}