Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: behaviour of -estout- w/ -oprobit-


From   Radu Ban <[email protected]>
To   [email protected]
Subject   st: behaviour of -estout- w/ -oprobit-
Date   Tue, 27 Sep 2005 19:38:03 -0400

Dear listers,

I am using -estout- to put together the results of a set of ordered
probits. Specifically, the relevant part of my dofile looks like this:

....
foreach v of local list1 {
	oprobit `v' AP KA TN, cluster(keyid)
	estimates store ff_`v'
}
estout ff_* using `mydir'\state_eff_freq.txt, cells(b(star fmt(%9.3f))
se(par)) keep(AP KA TN) stats(r2_p N, fmt(%9.3f %9.0g)
labels(psR-squared)) style(tab) replace
....

However, in the output file, only the first column of results is
shown, the other remaining blank. I know for sure that the ordered
probits run fine for all my dependent variables so I'm thinking the
problem lies within -estout-. Furthermore, when I am using -estout-
with regular probits (for a different set of dependent variables), I
can collect the results just fine, i.e. this part of my do-file(below)
produces the output that I expect, with all the columns filled in.

....
foreach v of local list2 {
	dprobit `v' AP KA TN, cluster(keyid)
	estimates store ee_`v'
}
estout ee_* using `mydir'\state_eff_freq.txt, cells(b(star fmt(%9.3f))
se(par)) keep(AP KA TN) stats(r2_p N, fmt(%9.3f %9.0g)
labels(psR-squared)) style(tab) replace
....

So my question: is there something about the combination of -oprobit-
and -estout- that I'm missing?

Thanks so much,
-Radu Ban

*
*   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index