I can able to calculate the propensity score using classification tree method. And if i am trying to find the PS matching i am getting error.(Error in Match(Y = Y, Tr = Tr, X = ps0) : length(Y) != length(Tr))
Propensity score matching: library("rgenoud") library("Matching") data("Passport") attach("Passport") Y<-Passport$A3 Tr<-Passport$fserv_cd rr1<-Match(Y=Y, Tr = Tr, X= glm1$fitted) [in above command i am getting Error in Match(Y = Y, Tr = Tr, X = ps0) : length(Y) != length(Tr)] Matchbalance(fserv_cd~ A4,match.out=rr1,nboots=1000,data=Passport) Please suggest me right approach for Propensity score matching using classification trees(if possible code me) . ps0-propensity score values -- View this message in context: http://r.789695.n4.nabble.com/Propensity-score-matching-in-R-using-Classification-tree-method-tp4281605p4281605.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.