Doubly-robust ATT combining matching and regression
Source:R/matching.R
morie_matching_doubly_robust.RdMatches on the propensity score, then applies bias-corrected linear regression adjustment within the matched sample. Standard errors come from a non-parametric bootstrap.
Usage
morie_matching_doubly_robust(
data,
outcome,
treatment,
covariates,
ps = NULL,
n_bootstrap = 200L,
seed = 42L,
alpha = 0.05
)Examples
if (FALSE) { # \dontrun{
morie_matching_doubly_robust(df, "y", "d", c("x1", "x2"),
n_bootstrap = 200)
} # }