Dear Stata users,
I fit an ordered logit regression and get a result as belows. There's only one categorical independent variable, i.e. a1, in my ologit model, and the other six independent variables are all continuous. The regression output tells me that '1 observation completely determined', I want to know how to find that observation. Firstly, is there a method to find observation(s) completely determined? and secondly, does it make sense to do that? Thank you very much.
I fit an ordered logit regression and get a result as belows. There's only one categorical independent variable, i.e. a1, in my ologit model, and the other six independent variables are all continuous. The regression output tells me that '1 observation completely determined', I want to know how to find that observation. Firstly, is there a method to find observation(s) completely determined? and secondly, does it make sense to do that? Thank you very much.
Code:
. ologit depvar i.a1 a2 a3 a4 a5 a6 a7, nofvlabel
Iteration 0: log likelihood = -2580.2178
Iteration 1: log likelihood = -2538.2005
Iteration 2: log likelihood = -2526.1038
Iteration 3: log likelihood = -2525.8926
Iteration 4: log likelihood = -2525.8925
Ordered logistic regression Number of obs = 1,936
LR chi2(7) = 108.65
Prob > chi2 = 0.0000
Log likelihood = -2525.8925 Pseudo R2 = 0.0211
------------------------------------------------------------------------------
depvar | Coef. Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
2.a1 | -.0064019 .0893216 -0.07 0.943 -.1814691 .1686653
a2 | -.0059516 .0128652 -0.46 0.644 -.0311669 .0192638
a3 | .0132942 .003767 3.53 0.000 .0059109 .0206774
a4 | -.0286236 .0042371 -6.76 0.000 -.0369281 -.0203192
a5 | -1.32e-07 7.30e-07 -0.18 0.856 -1.56e-06 1.30e-06
a6 | .0053879 .0011111 4.85 0.000 .0032101 .0075657
a7 | 2.45e-07 2.90e-07 0.85 0.398 -3.23e-07 8.14e-07
-------------+----------------------------------------------------------------
/cut1 | -2.834941 .3529625 -3.526735 -2.143147
/cut2 | -1.608988 .3376768 -2.270823 -.9471541
/cut3 | -.1550939 .333416 -.8085772 .4983894
/cut4 | 1.879049 .3373446 1.217866 2.540232
------------------------------------------------------------------------------
Note: 1 observation completely determined. Standard errors questionable.

Comment