Solved – R Mediate: How to interpret output with an ordinal outcome

mediationordered-logitordinal-datar

My question concerns the interpretation of a mediation analysis conducted in R using Tingley et al.'s mediation package. The hypothesis to be tested is that authoritarianism (continuous predictor X) is related to trust (continuous mediator M), which then mediates authoritarianism's statistical effect on the tendency to confess to a crime (ordinal outcome Y).
For R, this requires that I estimate the X -> M equation, and save the output. Both X and M I treat as continuous, interval-scaled variables:

at <- lm(trustscore~authoritarianism, data=Auth4clean)

Then I estimate the M -> Y equation (controlling for X) and again save the output. The outcome variable CONFESS is ordinal (7 levels), which requires the use of R's ordinal regression:

bt <- polr(CONFESS~trustscore + authoritarianism, data=Auth4clean,Hess=TRUE)

Both equations confirm predictions. In the final and critical step, I use bootstrapping to estimate the indirect effect. The mediate command requires inclusion of a treatment, even though the present data are correlational (not experimental). Here, I just included X; however, the shape of the output does not vary if I use a different treatment.

indirecttestt <- mediate(at, bt, treat='authoritarianism', mediator='trustscore', boot=TRUE, sims=1000)

summary(indirecttestt)

enter image description here

Can anyone tell me how to read this output?

*Whereas R mediate normally generates a single indirect effect (ACME) coefficient for the treatment or control condition, this analysis generates 7, presumably because of the 7 levels of the outcome variable.
*The indirect effect estimates for the lowest level of the outcome (Y=1) is negative, but it is positive for all other levels of the outcome (Y=2-7). At the same time, none of the CIs overlaps with 0.

Best Answer

Here is the response I got: Our methods compute the estimates on the same scale as the outcome. That's why you are seeing an estimate for each ordinal category. I hope this makes sense. The details about the methods are in the papers available here: https://imai.princeton.edu/projects/mechanisms.html You might want to look at our APSR or PM papers.

I don't really see how to use the probabilities for each value of the factor to express the statistics that you usually see with mediation analysis, such as percent mediated. Maybe that has to be expressed as a probability. How to turn it into 1 number is not so clear to me. I have more work to do, clearly.

Related Question