powered by
opt_nearfar
Given values of percent sinks and cutpoint, this function will find the corresponding near-far match
matches(dta, covs, iv = NA, imp.var = NA, tol.var = NA, sinks = 0, cutpoint = NA)
A two-column matrix of row indices of paired matches
The name of the data frame on which to do the matching
A vector of the names of the covariates to make ``near'', e.g., covs=c("age", "sex", "race")
The name of the instrumental variable, e.g., iv="QOB"
A list of (up to 5) named variables to prioritize in the ``near'' matching
A list of (up to 5) tolerances attached to the prioritized variables where 0 is highest penalty for mismatch
Percentage of the data to match to sinks (and thus remove) if desired; default is 0
Value below which individuals are too similar on iv; increase to make individuals more ``far'' in match
Joseph Rigdon jrigdon@wakehealth.edu
Default settings yield a "near" match on only observed confounders in X; add IV, sinks, and cutpoint to get near-far match.
Lu B, Greevy R, Xu X, Beck C (2011). Optimal nonbipartite matching and its statistical applications. The American Statistician, 65(1), 21-30.
k2 = matches(dta=mtcars, covs=c("cyl", "disp"), sinks=0.2, iv="carb", cutpoint=2, imp.var=c("cyl"), tol.var=0.03) k2[1:5, ]
Run the code above in your browser using DataLab