收藏 分销(赏)

-安慰剂检验介绍、操作及举例.doc

上传人:精*** 文档编号:2667621 上传时间:2024-06-04 格式:DOC 页数:9 大小:64.20KB
下载 相关 举报
-安慰剂检验介绍、操作及举例.doc_第1页
第1页 / 共9页
-安慰剂检验介绍、操作及举例.doc_第2页
第2页 / 共9页
-安慰剂检验介绍、操作及举例.doc_第3页
第3页 / 共9页
-安慰剂检验介绍、操作及举例.doc_第4页
第4页 / 共9页
-安慰剂检验介绍、操作及举例.doc_第5页
第5页 / 共9页
点击查看更多>>
资源描述

1、安慰剂检验介绍(Placebo test)安慰剂是一种附加实证检验的思路,并不存在一个具体的特定的操作方法。一般存在两种寻找安慰剂变量的方法。比如,在已有的实证检验中,发现自变量Xi会影响自变量Zi与因变量Yi之间存在相关关系。在其后的实证检验中,采用其他主体(国家,省份,公司)的Xj变量作为安慰剂变量,检验Xj是否影响Zi与Yi之间的相关关系。如果不存在类似于Xi的影响,即可排除Xi的安慰剂效应,使得结果更为稳健。另一种寻找安慰剂变量的方法。已知,Xi是虚拟变量,Xi=1,if tT;Xi=0 if tT+n;Xi=0 if tT+n,其中n根据实际情况取值,可正可负。检验Xi是否影响Zi与

2、Yi之间的相关关系。如果不存在类似于Xi的影响,即可排除Xi的安慰剂效应,使得结果更为稳健。举例:以美国市场某种政策冲击识别策略的因果关系考察,在最后部分选取英国同期的因变量,检验是否有类似的特征,就是安慰剂检验。以中国2007年所得税改革作为减税的政策冲击以验证减税对企业创新的影响。亦可以通过把虚拟的政策实施时间往前往后推几年,作为虚拟的政策时点,如果检验发现没有类似的因果,文章的主要结论就更加可信了。 以下是详细的例题,安慰剂检验在最后。Surviving Graduate Econometrics with R: Difference-in-Differences Estimation

3、2 of8The following replication exercise closely follows the homework assignment #2 in ECNS 562. The data for this exercise can be foundhere.The data is about the expansion of the Earned Income Tax Credit. This is a legislation aimed at providing a tax break for low income individuals. For some backg

4、round on the subject, seeEissa, Nada, and Jeffrey B. Liebman. 1996. Labor Supply Responses to the Earned Income Tax Credit. Quarterly Journal of Economics.111(2): 605-637.The homework questions (abbreviated):1. Describe and summarize data.2. Calculate the sample means of all variables for (a) single

5、 women with no children, (b) single women with 1 child, and (c) single women with 2+ children.3. Create a new variable with earnings conditional on working (missing for non-employed) and calculate the means of this by group as well.4. Construct a variable for the “treatment” called ANYKIDS and a var

6、iable for after the expansion (called POST93should be 1 for 1994 and later).5. Create a graph which plots mean annual employment rates by year (1991-1996) for single women with children (treatment) and without children (control).6. Calculate the unconditional difference-in-difference estimates of th

7、e effect of the 1993 EITC expansion on employment of single women.7. Now run a regression to estimate the conditional difference-in-difference estimate of the effect of the EITC. Use all women with children as the treatment group.8. Reestimate this model including demographic characteristics.9. Add

8、the state unemployment rate and allow its effect to vary by the presence of children.10. Allow the treatment effect to vary by those with 1 or 2+ children.11. Estimate a “placebo” treatment model. Take data from only the pre-reform period. Use the same treatment and control groups. Introduce a place

9、bo policy that begins in 1992 (so 1992 and 1993 both have this fake policy).A review: Loading your dataRecall the code for importing your data:STATA:/*Last modified 1/11/2011 */*The following block of commands go at the start of nearly all do files*/*Bracket comments with /* */ or just use an asteri

10、sk at line beginningclear /*Clears memory*/set mem 50m /*Adjust this for your particular dataset*/cd C:DATAEcon 562homework /*Change this for your file structure*/log using stata_assign2.log, replace /*Log file records all commands & results*/display $S_DATE $S_TIMEset more offinsheet using eitc.dta

11、, clear*R:123456789101112131415# Kevin Goulding# ECNS 562 - Assignment 2# Load the foreign packagerequire(foreign)# Import data from web site# update: first download the file eitc.dta from this link:# # Then import from your hard drive:eitc = read.dta(C:/link/to/my/download/folder/eitc.dta)Note that

12、 any comments can be embedded into R code, simply by putting a # to the left of your comments (e.g. anything to the right of # will be ignored by R). Alternately, you can download the data file, and import it from your hard drive:eitc = read.dta(C:DATACoursesEcon 562homeworkeitc.dta)Describe and sum

13、marize your dataRecall from part 1 of this series, the following code to describe and summarize your data:STATA:dessumR:In R, each column of your data is assigned a class which will determine how your data is treated in various functions. To see what class R has interpreted for all your variables, r

14、un the following code:1234sapply(eitc,class)summary(eitc)source(sumstats.r)sumstats(eitc)To output the summary statistics table to LaTeX, use the following code:12require(xtable) # xtable package helps create LaTeX code from R.xtable(sumstats(eitc)Note: You will need to re-run the code forsumstats()

15、which you can find in anearlier post.Calculate Conditional Sample MeansSTATA:summarize if children=0summarize if children = 1summarize if children =1summarize if children =1 & year = 1994mean work if post93 = 0 & anykids = 1R:1234567891011121314# The following code utilizes the sumstats function (yo

16、u will need to re-run this code)sumstats(eitceitc$children = 0, )sumstats(eitceitc$children = 1, )sumstats(eitceitc$children = 1, )sumstats(eitceitc$children = 1 & eitc$year = 1994, )# Alternately, you can use the built-in summary functionsummary(eitceitc$children = 0, )summary(eitceitc$children = 1

17、, )summary(eitceitc$children = 1, )summary(eitceitc$children = 1 & eitc$year = 1994, )# Another example: Summarize variable work for women with one child from 1993 onwards.summary(subset(eitc, year = 1993 & children = 1, select=work)The code above includes all summary statistics but say you are only

18、 interested in the mean. You could then be more specific in your coding, like this:123mean(eitceitc$children = 0, work)mean(eitceitc$children = 1, work)mean(eitceitc$children = 1, work)Try out any of the other headings within the summary output, they should also work:min()for minimum value,max()for

19、maximum value,stdev()for standard deviation, and others.Create a New VariableTo create a new variable called “c.earn” equal to earnings conditional on working (if “work” = 1), “NA” otherwise (“work” = 0) use the following code:STATA:gen cearn = earn if work = 1R:1234567eitc$c.earn=eitc$earn*eitc$wor

20、kz = names(eitc)X = as.data.frame(eitc$c.earn)X = lapply(X, function(x)replace(x, x = 0, NA)eitc = cbind(eitc,X)eitc$c.earn = NULLnames(eitc) = zConstruct a Treatment VariableConstruct a variable for the treatment called “anykids” = 1 for treated individual (has at least one child); and a variable f

21、or after the expansion called “post93” = 1 for 1994 and later.STATA:gen anykids = (children = 1)gen post93 = (year = 1994)R:12eitc$post93 = as.numeric(eitc$year = 1994)eitc$anykids = as.numeric(eitc$children 0)Create a plotCreate a graph which plots mean annual employment rates by year (1991-1996) f

22、or single women with children (treatment) and without children (control).STATA:preservecollapse work, by(year anykids)gen work0 = work if anykids=0label var work0 Single women, no childrengen work1 = work if anykids=1label var work1 Single women, childrentwoway (line work0 year, sort) (line work1 ye

23、ar, sort), ytitle(Labor Force Participation Rates)graph save Graph homeworkeitc1.gph, replaceR:123456789101112131415# Take average value of work by year, conditional on anykidsminfo = aggregate(eitc$work, list(eitc$year,eitc$anykids = 1), mean)# rename column headings (variables)names(minfo) = c(YR,

24、Treatment,LFPR)# Attach a new column with labelsminfo$Group1:6 = Single women, no childrenminfo$Group7:12 = Single women, childrenminforequire(ggplot2) #package for creating nice plotsqplot(YR, LFPR, data=minfo, geom=c(point,line), colour=Group,xlab=Year, ylab=Labor Force Participation Rate)The ggpl

25、ot2 package produces some nice looking charts.Calculate the D-I-D Estimate of the Treatment EffectCalculate the unconditional difference-in-difference estimates of the effect of the 1993 EITC expansion on employment of single women.STATA:mean work if post93=0 & anykids=0mean work if post93=0 & anyki

26、ds=1mean work if post93=1 & anykids=0mean work if post93=1 & anykids=1R:12345a = colMeans(subset(eitc, post93 = 0 & anykids = 0, select=work)b = colMeans(subset(eitc, post93 = 0 & anykids = 1, select=work)c = colMeans(subset(eitc, post93 = 1 & anykids = 0, select=work)d = colMeans(subset(eitc, post9

27、3 = 1 & anykids = 1, select=work)(d-c)-(b-a)Run a simple D-I-D RegressionNow we will run a regression to estimate the conditional difference-in-difference estimate of the effect of the Earned Income Tax Credit on “work”, using all women with children as the treatment group. The regression equation i

28、s as follows:Whereis the white noise error term.STATA:gen interaction = post93*anykidsreg work post93 anykids interactionR:12reg1 = lm(work post93 + anykids + post93*anykids, data = eitc)summary(reg1)Include Relevant Demographics in RegressionAdding additional variables is a matter of including them

29、 in your coded regression equation, as follows:STATA:gen age2 = age2 /*Create age-squared variable*/gen nonlaborinc = finc - earn /*Non-labor income*/reg work post93 anykids interaction nonwhite age age2 ed finc nonlaborincR:123reg2 = lm(work anykids + post93 + post93*anykids + nonwhite+ age + I(age

30、2) + ed + finc + I(finc-earn), data = eitc)summary(reg2)Create some new variablesWe will create two new interaction variables:1. The state unemployment rate interacted with number of children.2. The treatment term interacted with individuals with one child, or more than one child.STATA:gen interu =

31、urate*anykidsgen onekid = (children=1) gen twokid = (children=2)gen postXone = post93*onekidgen postXtwo = post93*twokidR:123456789101112# The state unemployment rate interacted with number of childreneitc$urate.int = eitc$urate*eitc$anykids# Creating a new treatment term:# First, well create a new

32、dummy variable to distinguish between one child and 2+.eitc$manykids = as.numeric(eitc$children = 2)# Next, well create a new variable by interacting the new dummy# variable with the original interaction term.eitc$tr2 = eitc$p93kids.interaction*eitc$manykidsEstimate a Placebo ModelTesting a placebo

33、model is when you arbitrarily choose a treatment time before your actual treatment time, and test to see if you get a significant treatment effect.STATA:gen placebo = (year = 1992)gen placeboXany = anykids*placeboreg work anykids placebo placeboXany if year1994In R, first well subset the data to exc

34、lude the time period after the real treatment (1993 and later). Next, well create a new treatment dummy variable, and run a regression as before on our data subset.R:12345678910# sub set the data, including only years before 1994.eitc.sub = eitceitc$year = 1992)# Run a placebo regression where placebo treatment = post91*anykidsreg3 Save As). If you have any questions or find problems with my code, you can e-mail me directly atkevingoulding at gmail dot com.To continue on to Part 3 of our series, Fixed Effects estimation,click here.

展开阅读全文
相似文档                                   自信AI助手自信AI助手
猜你喜欢                                   自信AI导航自信AI导航
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服