Dear colleagues,
I estimate the following model:
oprobit swb ib2.marital_status if syear==2005, vce(cluster pid)
Coding:
Dependent variable - swb: discrete values from 0 - 10.
Predictor - marital status: categorical variable 1 married, 2 single, 3 widowed, 4 divorced, 5 separated.
I would like to avoid evaluating (average) marginal effects (at means) for all 10 values of swb.
Question 1) Does the sign of the coefficients give the direction of the effects?
Is it possible to make a statement such as "compared to being single, being married increases the probability of scoring high in SWB" or "is associated with higher SWB scores than being single"?
Question 2) How can I test whether the effects on SWB are equal?
E.g., is the command "test _b[1.marital_status] = _b[5.marital_status]" valid to make statements?
Thank you very much in advance!
Kind regards,
Mischa
I estimate the following model:
oprobit swb ib2.marital_status if syear==2005, vce(cluster pid)
Coding:
Dependent variable - swb: discrete values from 0 - 10.
Predictor - marital status: categorical variable 1 married, 2 single, 3 widowed, 4 divorced, 5 separated.
Code:
oprobit swb ib2.marital_status if syear==2005, vce(cluster pid) Iteration 0: log pseudolikelihood = -10375.864 Iteration 1: log pseudolikelihood = -10347.239 Iteration 2: log pseudolikelihood = -10347.239 Ordered probit regression Number of obs = 5519 Wald chi2(4) = 51.92 Prob > chi2 = 0.0000 Log pseudolikelihood = -10347.239 Pseudo R2 = 0.0028 (Std. Err. adjusted for 5519 clusters in pid) Robust swb Coef. Std. Err. z P>z [95% Conf. Interval] marital_status [1] Married 1 .0758386 .0326055 2.33 0.020 .0119331 .1397441 [3] Widowed 3 -.0873954 .1555698 -0.56 0.574 -.3923067 .2175159 [4] Divorced 4 -.217214 .0585252 -3.71 0.000 -.3319213 -.1025066 [5] Separated 5 -.3878464 .0974401 -3.98 0.000 -.5788255 -.1968673
Question 1) Does the sign of the coefficients give the direction of the effects?
Is it possible to make a statement such as "compared to being single, being married increases the probability of scoring high in SWB" or "is associated with higher SWB scores than being single"?
Question 2) How can I test whether the effects on SWB are equal?
E.g., is the command "test _b[1.marital_status] = _b[5.marital_status]" valid to make statements?
Thank you very much in advance!
Kind regards,
Mischa
Comment