k2k | R Documentation |
Reduces a CEM output to a k2k matching
k2k(obj, data, method=NULL, mpower=2, verbose=0)
obj |
an object as output from |
data |
the original data.frame used by |
method |
distance method to use in |
mpower |
power of the Minkowski distance. See Details. |
verbose |
controls level of verbosity. Default=0. |
This function transforms a typical cem
matching solution
to a k
-to-k
match, with k
variable along strata:
i.e., in each stratum generated by cem
, the match is reduce to have
the same number of treated and control units. (This option will delete
some data that matched well, and thus likely increase the variance, but
it means that subsequent analyses do not require weights.)
The user can choose a method
(between 'euclidean
',
'maximum
', 'manhattan
', 'canberra
', 'binary
'
and 'minkowski
') for nearest neighbor matching inside each
cem
strata. By default method
is set to 'NULL
',
which means random matching inside cem
strata. For the Minkowski
distance the power can be specified via the argument mpower
'.
For more information on method != NULL
, refer to
dist
help page.
After k2k
the weights of each matched observation are set to unity. Please notice that option keep.all=TRUE
must be used in cem
calls
otherwise k2k
will not work.
obj |
an object of class |
Stefano Iacus, Gary King, and Giuseppe Porro
Iacus, King, Porro (2011) doi: 10.1198/jasa.2011.tm09599
Iacus, King, Porro (2012) doi: 10.1093/pan/mpr013
Iacus, King, Porro (2019) doi: 10.1017/pan.2018.29
data(LL) set.seed(123) # cem match: automatic bin choice mat <- cem(treatment="treated", data=LL, drop="re78", keep.all=TRUE) mat mat$k2k # ATT estimate att(mat, re78 ~ treated, data=LL) # transform the match into k2k mat2 <- k2k(mat, LL, "euclidean", 1) mat2 mat2$k2k # ATT estimate after k2k att(mat2, re78 ~ treated, data=LL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.