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/