Dear Statalist,
I want to know whether the next interpretation of the results below is correct and accurate.
I have a dataset where I have variables like preschool (attended 1 or not 0), and schcomplete with values 0, 1, 2 ,3 corresponding to "No school completed", "completed primary", "completed lower secondary" and "completed upper secondary", respectively.
I run (please note that I have erased from the output window information about standard error specification, control variables used, etc) :
Then, is it correct to say:
"Children that have attended preschool (Preschool=1), have a 14.82% more likely to complete primary education (schcomplete=1) than those who did not attend preschool (holding the rest of variables constant at their means)."
If yes, extending the command to:
should give me the probabilities of completing further education based on preschool attendance?
With respect to the margins command. I know of the existence of a user-written program (findit spost13_ado) that allows the user to use the mtable command, but I find margins more suitable for my purpose.
Thanks in advance.
I want to know whether the next interpretation of the results below is correct and accurate.
I have a dataset where I have variables like preschool (attended 1 or not 0), and schcomplete with values 0, 1, 2 ,3 corresponding to "No school completed", "completed primary", "completed lower secondary" and "completed upper secondary", respectively.
I run (please note that I have erased from the output window information about standard error specification, control variables used, etc) :
Code:
ologit schcomplete preschool
Ordered logistic regression Number of obs = 947
Wald chi2(17) = 177.81
Prob > chi2 = 0.0000
Log pseudolikelihood = -996.31708 Pseudo R2 = 0.1174
(Std. Err. adjusted for 218 clusters in commid)
-------------------------------------------------------------------------------
| Robust
schcomplete | Coef. Std. Err. z P>|z| [95% Conf. Interval]
--------------+----------------------------------------------------------------
preschool | .2894881 .1595113 1.81 0.070 -.0231483 .6021244
|
--------------+----------------------------------------------------------------
/cut1 | -8.771776 4.005921 -16.62324 -.920315
/cut2 | -6.963359 4.001318 -14.8058 .8790807
/cut3 | -5.492928 3.988863 -13.31095 2.325099
-------------------------------------------------------------------------------
. margins, predict(outcome(1)) at(preschool=1) atmeans post
Adjusted predictions Number of obs = 947
Model VCE : Robust
Expression : Pr(schcomplete==1), predict(outcome(1))
at : preschool = 1
------------------------------------------------------------------------------
| Delta-method
| Margin Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
_cons | .1482219 .0181786 8.15 0.000 .1125925 .1838513
------------------------------------------------------------------------------
"Children that have attended preschool (Preschool=1), have a 14.82% more likely to complete primary education (schcomplete=1) than those who did not attend preschool (holding the rest of variables constant at their means)."
If yes, extending the command to:
Code:
margins, predict(outcome(1)) at(preschool=1) atmeans post margins, predict(outcome(2)) at(preschool=1) atmeans post margins, predict(outcome(3)) at(preschool=1) atmeans post
With respect to the margins command. I know of the existence of a user-written program (findit spost13_ado) that allows the user to use the mtable command, but I find margins more suitable for my purpose.
Thanks in advance.

Comment