Dear Statalist,
I would appreciate your help interpreting my margins, dydx(*) output of 12.86.
I am using a logit model as I have a binary dependent variable (if participants voted in favor of a particular policy). The independent variables in that specific regression are return (a continuous variable that indicates the stock market return) and another continuous variable that measures the participants' distance to the spectrum center.
As you can see, the marginal effect is 0.013 for distance, which means (I believ) that for a 1 unit increase in the distance, the probabiliy of a positive vote increases by 13 percentage points.
However, I am unsure how to interpret the return coefficient: if the stock market return increases by 1 unit, then the probability of a positive vote increases by 1229 percentage points?
I would be most grateful for any help or guidance.
Professor Williams' site on marginal effects for continuous variables (https://www3.nd.edu/~rwilliam/stats3/Margins02.pdf) has listed marginal effects of 1.84 (page 12 - middle of the page) but I found no interpretation.
Thank you very much!
I would appreciate your help interpreting my margins, dydx(*) output of 12.86.
I am using a logit model as I have a binary dependent variable (if participants voted in favor of a particular policy). The independent variables in that specific regression are return (a continuous variable that indicates the stock market return) and another continuous variable that measures the participants' distance to the spectrum center.
Code:
logit vote diff return, vce(cluster CASE) Iteration 0: log pseudolikelihood = -177.43585 Iteration 1: log pseudolikelihood = -171.60007 Iteration 2: log pseudolikelihood = -171.59334 Iteration 3: log pseudolikelihood = -171.59334 Logistic regression Number of obs = 257 Wald chi2(2) = 10.94 Prob > chi2 = 0.0042 Log pseudolikelihood = -171.59334 Pseudo R2 = 0.0329 (Std. err. adjusted for 136 clusters in CASE) ------------------------------------------------------------------------------ | Robust vote | Coefficient std. err. z P>|z| [95% conf. interval] -------------+---------------------------------------------------------------- diff | .0548298 .0374937 1.46 0.144 -.0186565 .128316 return| 51.75872 19.76173 2.62 0.009 13.02643 90.491 _cons| -.3261903 .1789603 -1.82 0.068 -.6769461 .0245654 ------------------------------------------------------------------------------
Code:
logit vote diff return, vce(cluster CASE) or Iteration 0: log pseudolikelihood = -177.43585 Iteration 1: log pseudolikelihood = -171.60007 Iteration 2: log pseudolikelihood = -171.59334 Iteration 3: log pseudolikelihood = -171.59334 Logistic regression Number of obs = 257 Wald chi2(2) = 10.94 Prob > chi2 = 0.0042 Log pseudolikelihood = -171.59334 Pseudo R2 = 0.0329 (Std. err. adjusted for 136 clusters in CASE) ------------------------------------------------------------------------------ | Robust vote | Odds ratio std. err. z P>|z| [95% conf. interval] -------------+---------------------------------------------------------------- diff | 1.056361 .0396069 1.46 0.144 .9815164 1.136912 return | 3.01e+22 5.95e+23 2.62 0.009 454261 1.99e+39 _cons | .7216678 .1291499 -1.82 0.068 .5081665 1.02487 ------------------------------------------------------------------------------ Note: _cons estimates baseline odds.
Code:
margins, dydx(*) Average marginal effects Number of obs = 257 Model VCE: Robust Expression: Pr(vote), predict() dy/dx wrt: diff return ------------------------------------------------------------------------------ | Delta-method | dy/dx std. err. z P>|z| [95% conf. interval] -------------+---------------------------------------------------------------- diff | .0130217 .0087526 1.49 0.137 -.0041331 .0301766 return | 12.29236 4.440897 2.77 0.006 3.588361 20.99636 ------------------------------------------------------------------------------
However, I am unsure how to interpret the return coefficient: if the stock market return increases by 1 unit, then the probability of a positive vote increases by 1229 percentage points?
I would be most grateful for any help or guidance.
Professor Williams' site on marginal effects for continuous variables (https://www3.nd.edu/~rwilliam/stats3/Margins02.pdf) has listed marginal effects of 1.84 (page 12 - middle of the page) but I found no interpretation.
Thank you very much!
Comment