"E. Michael Foster" <mike4kids at gmail dot com> writes:
> stata seems to be ignoring the starting values I'm trying to pass
> it--I'm sure I'm doing something dumb--can anyone spot my error?
>
> sysuse auto
> sort mpg
> gen mpgg=group(10) // make up a fake nesting
> xi: logit foreign weight length i.mpgg
> matrix b=e(b)
> matrix b=b[1,1..2]' // doesn't seem to matter
<commands deleted>
> matrix list b
> xtlogit foreign weight length , i(mpgg) fe from(b, copy ) trace
Michael is not doing anything wrong; -xtlogit, fe- is ignoring the -from()-
option. This only affects fixed effects -xtlogit-. This bug will be fixed in
the next ado-file update.
-xtlogit, fe- is a wrapper for -clogit-. In the meantime, Michael can work
around this problem by calling -clogit- directly:
. clogit foreign weight length, group(mpgg) from(b, copy)
--Jean Marie
[email protected]
*
* 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/