-安慰剂检验介绍、操作及举例.doc
《-安慰剂检验介绍、操作及举例.doc》由会员分享,可在线阅读,更多相关《-安慰剂检验介绍、操作及举例.doc(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
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 完整 word 安慰剂 检验 介绍 操作 举例
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【精***】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【精***】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。