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

Re: st: oprobit standardized coefficients


From   "C. Scott Smith" <[email protected]>
To   <[email protected]>
Subject   Re: st: oprobit standardized coefficients
Date   Tue, 8 Jul 2003 15:06:38 -0700

Thanks Joseph for pointing me to the "listcoef" command which is based on Long's regression models
for categorical and limited dependent variables. The package spostado (not part of STATA 8 basic
install) is made available at www.indiana.edu/~jslsoc/spost.htm.


----------------------------------------------------------------------------
----

> Does anyone know how to calculate standardized coefficients for an ordered
probit model? We were
> able to calculate standardized coefficients for an OLS regression model
using the "beta" option but
> we were unable to find a comparable option for oprobit.

----------------------------------------------------------------------------
----

One of the many postestimation commands from J. Scott Long and Jeremy Freese
might work for you here.  I've illustrated one of them, -listcoef-, in the
do file below, although I'm not certain that it's what you're looking for.

Joseph Coveney

----------------------------------------------------------------------------
----

clear
set seed 20030704
set obs 100
generate byte trt = _n > _N / 2
generate byte sco = int(uniform() * 5) + 1
generate float bas = uniform()
xi: oprobit sco i.trt*bas
listcoef, help
exit

----------------------------------------------------------------------------
----



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

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