I am using CBPS
package of R for propensity score matching of a dataset with a two levels treatment group.
This the code I wrote:
fit <- CBPS(formula=formu1, data = data2, ATT = TRUE, twostep = FALSE, standardize = TRUE)
rr.att.CBPS <- Match(Y=Y, Tr=Tr, X=fitted(fit), M=1, ties=FALSE, replace=FALSE, estimand='ATT')
But, how can I access the matched dataset for analysis?
I recommend you to use
MatchIt
package instead.Imagine a dataset called 'dataset' with a binary treatment group(T) and some other covariates (V1,V2,V3) , and a target variable(p).