안녕하세요
propensity score matching 후에, 각 변수별로 standardized difference 값이 그래프로만 나오는 것 같습니다.
정확한 수치를 알 수 있는 방법이 있을까요?
Comment 1
-
cardiomoon
2016.10.05 08:24
웹R에서는 MatchIt 패키지를 사용합니다. 예를 들어 다음과 같이 합니다.library(MatchIt)data(lalonde)m.out=matchit(treat~educ+black+hispan, data=lalonde,method='nearest')summary(m.out) # 숫자로 summaryplot(m.out)자세한 것은 MatchIt 패키지 설명서를 읽어보셔요.matchit3.pdf