Your questions here are only tangentially relevant to the initial topic of this thread. It would have been better to start a new thread so that others who might want to find this discussion later (because they have the same question you do) would be able to do so using the Forum's search facilities.
Be that as it may.
Yes, precisely.
As for your second issue, I take it you are using an older version of Stata. In version 14, -margins- automatically provides the marginal effects for all outcome levels by default. The behavior you show was, I believe, the default in version 13. In version 13, you will need to write a loop to get all of them.
Be that as it may.
In the margins output it is written "Pr(swb==0)". According to Greene "Assuming that β is positive (for this x), Prob(y = 0|x) must decline. Alternatively, from the previous expression, it is obvious that the derivative of Prob(y = 0 | x) has the opposite sign from β."
Is that the crucial point?
Is that the crucial point?
As for your second issue, I take it you are using an older version of Stata. In version 14, -margins- automatically provides the marginal effects for all outcome levels by default. The behavior you show was, I believe, the default in version 13. In version 13, you will need to write a loop to get all of them.
Code:
// RUN YOUR oprobit forvalues i = 0/10 { margins, dydx(*) predict(outcome(`i')) }
Comment