Created
July 31, 2015 00:47
-
-
Save gavinwhyte/9ca4a283bbb49c906659 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Propensity Score Matching in R | |
# Copyright 2013 by Ani Katchova | |
# install.packages("Matching") | |
library(Matching) | |
# install.packages("rbounds") | |
library("rbounds") | |
mydata<- read.csv("C:/Econometrics/Data/matching_earnings.csv") | |
attach(mydata) | |
# Defining variables (Tr is treatment, Y is outcome, X are independent variables) | |
Tr <- cbind(TREAT) | |
Y <- cbind(RE78) | |
X <- cbind(AGE, EDUC, MARR) | |
var1 <- AGE | |
# Outcome for difference-in-differences model | |
# Y <- cbind(REDIFF) | |
# Descriptive statistics | |
summary (Tr) | |
summary(Y) | |
summary(X) | |
# Propensity score model | |
glm1 <- glm(Tr ~ X, family=binomial(link = "probit"), data=mydata) | |
summary(glm1) | |
# Average treatment on the treated effect | |
rr1 <- Match(Y = Y, Tr = Tr, X = glm1$fitted) | |
summary(rr1) | |
# rr2 <- Match(Y = Y, Tr = Tr, X = glm1$fitted, estimand = "ATT", M = 1, ties = TRUE, replace = TRUE) | |
# rr3 <- Match(Y = Y, Tr = Tr, X = glm1$fitted, estimand = "ATE", M = 1, ties = TRUE, replace = TRUE) | |
# Checking the balancing property | |
MatchBalance(Tr ~ X, match.out = rr1, nboots=0, data=mydata) | |
qqplot(var1[rr1$index.control], var1[rr1$index.treated]) | |
abline(coef = c(0, 1), col = 2) | |
# Genetic matching | |
gen1 <- GenMatch(Tr = Tr, X = X, BalanceMatrix = X, pop.size = 10) | |
mgen1 <- Match(Y = Y, Tr = Tr, X = X, Weight.matrix = gen1) | |
MatchBalance(Tr ~ X, data = mydata, match.out = mgen1, nboots = 0) | |
# Sensitivity tests | |
psens(mgen1, Gamma=1.7, GammaInc=.05) | |
hlsens(mgen1, Gamma=1.7, GammaInc=.05, .1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment