Hi Stata users,
I'm trying to run a model with School Mean Test Scores as the outcome variable, and school characteristics as explanatory variable. The school ID is repeated over 4 waves.
Therefore I'm using:
xtreg depvar [indepvars] [if] [in] [weight] , mle [MLE_options]
My PROBLEM: some variables appear in the output with missing standard errors (as you can see in the output attached to this message).
Here is my data:
Stata command I used:
xtreg sc_mean_tsmat_mz year_pb_or urban federal state south midwest northeast north sc_pmale sc_pwhi sc_mean_pcahamofae sc_ptuni sc_ptpostedu sc_bfloor75 sc_afloor75 sc_insufund sc_shortadmstaf sc_la ckpedaresour sc_teahighabs, i(id_sc) mle
The Stata output with missing Standar Errors attached.
Any help in that would be highly appreciated!
I'm trying to run a model with School Mean Test Scores as the outcome variable, and school characteristics as explanatory variable. The school ID is repeated over 4 waves.
Therefore I'm using:
xtreg depvar [indepvars] [if] [in] [weight] , mle [MLE_options]
My PROBLEM: some variables appear in the output with missing standard errors (as you can see in the output attached to this message).
Here is my data:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input float(sc_mean_tsmat_mz year_pb_or) byte(urban federal state south midwest northeast north) float(sc_pmale sc_pwhi sc_mean_pcahamofae sc_ptuni sc_ptpostedu sc_bfloor75 sc_afloor75 sc_insufund sc_shortadmstaf sc_lackpedaresour sc_teahighabs) .10982365 0 1 0 1 0 0 0 1 47 34 2.405395 1 30 1 1 1 3 1 1 .10982365 2 1 0 1 0 0 0 1 47 34 2.405395 1 30 1 1 2 3 2 1 -.2093975 0 1 0 1 0 0 0 1 42 26 1.1467584 .7721239 76 1 0 1 2 1 3 -.2093975 1 1 0 1 0 0 0 1 42 26 1.1467584 .7721239 76 1 0 1 2 1 2 -.2093975 2 1 0 1 0 0 0 1 42 26 1.1467584 .7721239 76 1 0 1 3 1 2 -.2093975 3 1 0 1 0 0 0 1 42 26 1.1467584 .7721239 76 1 0 1 3 1 2 -.27584708 2 0 0 0 0 0 0 1 39 52 -.09321615 1 100 1 0 1 3 1 2 -.1081955 0 1 0 1 0 0 0 1 36 28 .8743236 .9893617 25 1 1 1 3 1 1 -.1081955 1 1 0 1 0 0 0 1 36 28 .8743236 .9893617 25 1 1 2 2 1 2 -.1081955 2 1 0 1 0 0 0 1 36 28 .8743236 .9893617 25 1 1 1 1 1 1 -.1081955 3 1 0 1 0 0 0 1 36 28 .8743236 .9893617 25 1 1 1 1 1 1 -.3622141 0 1 0 1 0 0 0 1 44 22 .4408509 .9886792 99 1 0 2 3 1 1 -.3622141 1 1 0 1 0 0 0 1 44 22 .4408509 .9886792 99 1 0 2 1 1 1 -.3622141 2 1 0 1 0 0 0 1 44 22 .4408509 .9886792 99 1 0 2 3 1 1 -.3622141 3 1 0 1 0 0 0 1 44 22 .4408509 .9886792 99 1 0 1 1 1 2 -.4329991 1 0 0 1 0 0 0 1 38 25 .1797918 .7068965 69 1 1 2 2 2 2 end
xtreg sc_mean_tsmat_mz year_pb_or urban federal state south midwest northeast north sc_pmale sc_pwhi sc_mean_pcahamofae sc_ptuni sc_ptpostedu sc_bfloor75 sc_afloor75 sc_insufund sc_shortadmstaf sc_la ckpedaresour sc_teahighabs, i(id_sc) mle
The Stata output with missing Standar Errors attached.
Any help in that would be highly appreciated!

Comment