Mediation Analysis

Mediation analysis is a decomposition of causal effects based on a mediator variable.


Description

In circumstances where a significant relationship has been found between an independent and dependent variable, but no causal mechanism has been identified, it is possible to propose hypotheses that a third mediator variable completes the causal model.

path.png

The effects pictured are:

This can be estimated with the Sobel test, but best practice is to use a bootstrapping method.


Example

The Sobel test approach, using the multilevel package:

library(multilevel)

sorel(data$X, data$M, data$Y)

This displays:

The bootstrapping approach, using the mediation package:

XonY <- lm(Y ~ X, data = data)
XonM <- lm(M ~ X, data = data)
XMonY <- lm(Y ~ X + M, data = data)

library(mediation)

mediate(XonM, XMonY, treat='X', mediator='M', boot=TRUE, sims=500)

This displays:


CategoryRicottone

Statistics/MediationAnalysis (last edited 2025-04-03 21:51:39 by DominicRicottone)