Abadie s Semi-parametric. Difference-in-Difference Estimator

Size: px
Start display at page:

Download "Abadie s Semi-parametric. Difference-in-Difference Estimator"

Transcription

1 Abadie s Semi-parametric Difference-in-Difference Estimator Kenneth Houngbedji Paris School of Economics September, 2015 Abstract The difference-in-differences (DID) estimator measures the effect of a treatment or policy intervention by comparing change over time of the outcome variable across treatment groups. To interpret the estimate as a causal effect, this strategy requires that, in the absence of the treatment, the outcome variable would have followed the same trend in treated and untreated groups. This assumption may be implausible if selection for treatment is correlated with characteristics that affect the dynamic of the outcome variable. This paper describes the command absdid which implements the semi-parametric differences-in-differences (SDID) estimator of Abadie (2005). The SDID is a reweighing technique that addresses the imbalance of characteristics between treated and untreated groups. Hence, it makes the parallel trend assumption more credible. In addition, the SDID estimator allows the use of covariates to describe how the average effect of the treatment varies for different groups of the treated population. Keywords: semi-parametric estimations, difference-in-difference, propensity score kenneth.houngbedji[@]ps .eu, address: Paris School of Economics, Bureau A5-48 Boulevard Jourdan Paris, France. 1

2 2 1 The semi-parametric difference-in-difference estimator Let s consider the general setting of studies of causal effects used by Rosenbaum and Rubin (1983). We want to estimate the causal effect of a treatment on a variable of interest y at some time t. Each subject has two potential outcomes (y 1t, y 0t ). y 1t is the value of y if the subject receives the treatment by time t. y 0t is the value of y had the participant not received the treatment at time t. d is an indicator of whether or not a participant is treated by time t. At time t = 0 the baseline b no one is treated. At the time t 0, d is equal to 1 for treated participant and 0 otherwise. We want to estimate the average effect of the treatment on the treated (ATT): ) ATT E (y 1t y 0t d = 1. (1) Since y 0t is never observed for a treated participant, the ATT cannot be directly estimated. Assume y 0b is the value of y at time t = 0 i.e. the baseline. Let s x b be a set of pre-treatment characteristics; y t y t y b is the change of y between time t and the baseline b and π (x b ) P ( d = 1 ) xb is the conditional probability to be in the treatment group also called the propensity score. Abadie (2005) shows that the sample analog of ( yt E P (d = 1) d π (x ) ) b 1 π (x b ) (2) gives an unbiased estimate of the ATT if Equation (3) and Equation (4) hold. ) ) E (y 0t y 0b d = 1, xb = E (y 0t y 0b d = 0, xb (3) P (d = 1) > 0 and π (x b ) < 1 (4) The estimator is a weighted average of the difference of trend y t across treatment groups. It proceeds by reweighing the trend for the untreated participants based on their propensity score π (x b ). As π(x b ) 1 π(x b ) is an increasing function of π (x ), untreated b participants with higher propensity score are given higher weight.

3 3 Abadie (2005) suggests to approximate the propensity score π (x b ) semiparametrically using a polynomial series of order k of the predictors. Thereafter, the values predicted are plugged into the sample analogue of Equation (2). Even though the approximation improves for higher polynomial order, the estimation become less precise. It is also possible to estimate π (x b ) with the series logit estimator (SLE) (see Hirano et al., 2003). This method uses a logit specification to constrain the estimated propensity score to vary between 0 and 1. Independently of the approximation method used, the errors related to the estimation of the propensity scores are taken into account when estimating the standard error of the ATT as described in Abadie (2005). Other estimators use the propensity score to estimate the ATT. The kernel matching and nearest neighbor matching estimators are among the most widely used estimators for quasi experimental identification. However, both estimators assume that the propensity score is given and not estimated and produce on average estimates with smaller standard errors than the estimator of Abadie (2005). 2 The absdid command The command absdid is the Stata equivalent of a Matlab code written by Abadie in an empirical application of the semiparametric difference in difference estimator. 1 absdid estimates the ATT by comparing change over time of the outcome of interest across treatment groups while adjusting for difference between treatment groups on the observable characteristics at baseline which are correlated to the propensity score. 2.1 The syntax The general syntax for the command absdid is: absdid depvar [ if ] [ in ] [, tvar(varname) xvar(varlist) yxvar(varlist) order(#) csinf(#) csup(#) sle common ] 1 The original code is tailored to measure the effect of union membership on wages for workers. It is available at

4 4 depvar is a variable that represents the change of the outcome of interest between baseline and post treatment for each observation. tvar(varname) is the treatment variable. It takes the value 1 when the observation is treated and 0 otherwise. xvar(varlist) are the control variables. They can be either continuous or binary variables and are used to estimate the propensity score. order(#) takes integer values and represents the order of the polynomial function used to estimate the propensity score. The default is order(1). sle uses a series logit estimator of Hirano et al. (2003) to estimate the propensity score instead of simple polynomial series (the default). common imposes a common support by dropping treatment observations with a propensity score higher than the maximum score of the untreated observations or less than the minimum score of the treated. csinf(#) imposes a common support by dropping the observations of which the propensity score is lower than the value provided as csinf. The default is csinf(0). csup(#), imposes common support by dropping the observations of which the propensity score is higher than the value provided as csup. The default is csup(1). yxvar(varlist) allows to estimate the average impact of the treatment for the treated along the variables in varlist. It is mandatory to declare depvar, tvar(varname) and xvar(varlist). 2.2 Estimation of the propensity score with absdid Consider ˆπ (x b ) is the approximated propensity score; k is the order the polynomial function used to approximate π (x b ). By default absdid uses linear probability model

5 5 to approximate π (x b ) : ˆπ (x b ) = ˆγ 0 + ˆγ 1 x 1 + k ˆγ 2i x i 2, (5) i=1 where x 1 is a binary variable; x 2 is a continuous variable and x i 2 = i j=1 x 2. The coefficients ˆγ 0, ˆγ 1, ˆγ 21,..., ˆγ 2i,..., ˆγ 2k are estimated using an ordinary least square estimator. When the sle option is specified, absdid uses the following specification to approximate π (x b ): ( ˆπ (x b ) = Λ ˆγ 0 + ˆγ 1 x 1 + K ) ˆγ 2k x k 2. (6) k=1 Higher order the binary variables like x 1 are not considered because for any value k > 1, x k 1 = x 1. 3 Example To illustrate how absdid works, we reproduce the application exercise available on Abadie s website and estimate the effect of participation to a worker union on wages of unionized female workers. The data used is an excerpt of the current population survey (CPS) a US Government monthly survey of unemployment and labor force participation. It consists of workers observed in 1996 who were resurveyed in 1997 and can be downloaded as described below (see Table A-1 for a description of the key variables).. infile month wagespro wagespr union97 union96 age sex black hispanic married > educ exp state smsa dind grade year using " > badie/cpsu97.raw", clear (44752 observations read). g lwagepro = log(wagespro). g lwagepr = log(wagespr). g hschool = (grade >= 39). g college = (grade >= 43)

6 6 We restrict the sample to female workers that were not unionized in 1996 and identify the union-wage effect on the workers that joined a worker union between 1996 and Let s note w 1,97 the wage of a worker in 1997 if she joins a worker union and w 0,97 the wage hasn t she joined the union. The parameter of interest is: ( ) ATT (w) E w 1,97 w 0,97 union97 = 1. (7) As wage variations are traditionally modeled through a log-normal distribution, we first get the estimate β of ATT (log(w)) and deduce the percentage effect of worker union on wage using the transformation suggested by Kennedy (1981): ( w1,97 w ) E 0,97 union97 = 1 w 0,97 ( = exp ˆβ 1 2 V ( β) ) 1. (8) To account for the fact that the workers who joined a union in 1997 differ from those that remained non-unionized with respect to age, education level and race see Table A-2 we use a semiparametric difference-in-difference approach. Hence, we assume that, in absence of worker unions, wage dynamics of unionized workers would have been similar to that of non-unionized workers with the same age, education level, race, state of residence, and sector of activity. If that assumption holds, the semiparametric difference-in-difference estimator of the union-wage effect for female workers can be estimated as described below.. g dlwage = log(wagespro)-log(wagespr). asdid dlwage if sex == 0 & union96 == 0, tvar(union97) xvar(age black hispa > nic married i.grade i.state i.dind i.month) order(4) csinf(.001) csup(1) ATT Coef. Std. Err. z P> z [95% Conf. Interval] dlwage Then, we implement the transformation of Equation (8).. nlcom exp(_b[dlwage] -.5*(_se[dlwage])^2) - 1

7 7 _nl_1: exp(_b[dlwage] -.5*(_se[dlwage])^2) - 1 ATT Coef. Std. Err. z P> z [95% Conf. Interval] _nl_ This estimation procedure suggests that joining a worker union increased wage of female workers by 3.3 percent in Similarly, we can also estimate how the treatment effect varies across different groups of female workers. See Table 1 for the results after the transformation recommended by Kennedy (1981). For comparison, Table A-3 shows the raw estimates without correction.. qui asdid dlwage if sex == 0 & union96 == 0, tvar(union97) xvar(age black h > ispanic married i.grade i.state i.dind i.month) yxvar(age hschool college) > order(4) csinf(.001) csup(1). qui nlcom exp(_b[dlwage] -.5*(_se[dlwage])^2) - 1. qui nlcom exp(_b[agexdlwage] -.5*(_se[ageXdlwage])^2) - 1. qui nlcom exp(_b[hschoolxdlwage] -.5*(_se[hschoolXdlwage])^2) - 1. qui nlcom exp(_b[collegexdlwage] -.5*(_se[collegeXdlwage])^2) - 1

8 8 Table 1: Effect of worker union on wage of unionized workers. ATT LPM SLE (1) (2) (3) (4) Constant 0.033** 0.326** 0.041** 0.400*** (0.017) (0.127) (0.017) (0.152) Age (years) ** ** (0.002) (0.002) High school ** *** (0.056) (0.060) College (0.036) (0.038) Number of workers 16,270 16,270 18,273 18,273 Note: The table reports estimates of the union-wage effects using asdid. Models (1) and (3) report estimates of the average ATT. Models (2) and (4) show how the ATT varies across different groups of unionized female workers. The ATT reported in (1) and (2) are estimated using a linear polynomial function of degree 4 to approximate the propensity score. The ATT reported in (3) and (4) are estimated using a logit specification or degree 4 to estimate the propensity score. Standard errors are in parentheses and significance levels are denoted as follows: * p<0.10, ** p<0.05, *** p<0.01.

9 9 4 Discussion The semiparametric difference-in-difference estimate can vary with the type of approximation used sle or simple linear probability model (the default) and the order of the polynomial approximation used order(#). Yet, in the example used in this paper, the confidence intervals of the ATT estimated with LPM and SLE intersect. To reduce the margin for arbitrage, one could use a cross validation technique to decide the combination of method which suits best the the semiparametric approximation of the propensity score. It can also help to consider that the LPM is likely to produce estimates of the propensity score which are either negative or greater than 1. This is not the case of the SLE approximation. Consequently, the sample size used to estimate the ATT is larger when the propensity score is approximated with the sle option. References Abadie, A Semiparametric Difference-in-Differences Estimators. Review of Economic Studies 72(1): Hirano, K., G. W. Imbens, and G. Ridder Efficient Estimation of Average Treatment Effects Using the Estimated Propensity Score. Econometrica 71(4): Kennedy, P. E Estimation with Correctly Interpreted Dummy Variables in Semilogarithmic Equations. American Economic Review 71(4): 801. Rosenbaum, P. R., and D. B. Rubin The Central Role of the Propensity Score in Observational Studies for Causal Effects. Biometrika 70(1): About the authors Kenneth Houngbedji is a researcher at the Paris School of Economics. His main research interests are in development economics and quantitative methods.

10 10 Appendix Table A-1: Definitions of key variables of interest Variable name Definition month Interview calendar month which varies from 1 to 12 wagespr hourly wage of the worker 1996 wagespro hourly wage of the worker 1997 age age (in years) of the worker in 1996 sex black hispanic married binary variable equal to 0 for a female worker and 1 for a male worker binary variable equal to 1 is the worker is black and 0 if not binary variable equal to 1 if the worker is Hispanic and 0 if not binary variable equal to 1 for married worker and 0 otherwise grade highest grade attained by worker observed in 1996 hschool college state dind binary variable equal to 1 for workers that have completed high school and 0 if not binary variable equal to 1 for workers that have completed college and 0 if not 2-digit code for state of residence 2-digit code for the sector of activity of the worker

11 11 Table A-2: Characteristics of female workers across treatment groups. Variables Entire sample Unionized Non- Unionized Diff. Union coverage in [0.22] Wage variables: Log wage in *** [0.52] [0.49] [0.53] (0.02) Log wage in ** [0.54] [0.52] [0.54] (0.02) Covariates in 1996: Age (years) *** [11.01] [10.55] [11.03] (0.37) High school [0.26] [0.27] [0.26] (0.01) College *** [0.43] [0.48] [0.43] (0.01) African American *** [0.29] [0.39] [0.29] (0.01) Hispanic [0.24] [0.26] [0.24] (0.01) Married [0.48] [0.48] [0.48] (0.02) Number of workers 18, ,512 18,470 Note: Standard deviations are in brackets and standard errors are in parentheses and significance levels are denoted as follows: * p<0.10, ** p<0.05, *** p<0.01.

12 12 Table A-3: Effects of worker union on log of wage of unionized workers. ATT LPM SLE (1) (2) (3) (4) Constant 0.033** 0.287*** 0.040** 0.343*** (0.016) (0.096) (0.017) (0.108) Age (years) ** ** (0.002) (0.002) High school ** *** (0.065) (0.072) College (0.035) (0.036) Number of workers 16,270 16,270 18,273 18,273 Note: The table reports estimates of the effects of worker union on log of wage using asdid. Models (1) and (3) report estimates of the average ATT. Models (2) and (4) show how the ATT varies across different groups of unionized female workers. The ATT reported in (1) and (2) are estimated using a linear polynomial function of degree 4 to approximate the propensity score. The ATT reported in (3) and (4) are estimated using a logit specification or degree 4 to estimate the propensity score. Standard errors are in parentheses and significance levels are denoted as follows: * p<0.10, ** p<0.05, *** p<0.01.

AN INTRODUCTION TO MATCHING METHODS FOR CAUSAL INFERENCE

AN INTRODUCTION TO MATCHING METHODS FOR CAUSAL INFERENCE AN INTRODUCTION TO MATCHING METHODS FOR CAUSAL INFERENCE AND THEIR IMPLEMENTATION IN STATA Barbara Sianesi IFS Stata Users Group Meeting Berlin, June 25, 2010 1 (PS)MATCHING IS EXTREMELY POPULAR 240,000

More information

Gender Differences in Employed Job Search Lindsey Bowen and Jennifer Doyle, Furman University

Gender Differences in Employed Job Search Lindsey Bowen and Jennifer Doyle, Furman University Gender Differences in Employed Job Search Lindsey Bowen and Jennifer Doyle, Furman University Issues in Political Economy, Vol. 13, August 2004 Early labor force participation patterns can have a significant

More information

The Wage Return to Education: What Hides Behind the Least Squares Bias?

The Wage Return to Education: What Hides Behind the Least Squares Bias? DISCUSSION PAPER SERIES IZA DP No. 8855 The Wage Return to Education: What Hides Behind the Least Squares Bias? Corrado Andini February 2015 Forschungsinstitut zur Zukunft der Arbeit Institute for the

More information

ECON 142 SKETCH OF SOLUTIONS FOR APPLIED EXERCISE #2

ECON 142 SKETCH OF SOLUTIONS FOR APPLIED EXERCISE #2 University of California, Berkeley Prof. Ken Chay Department of Economics Fall Semester, 005 ECON 14 SKETCH OF SOLUTIONS FOR APPLIED EXERCISE # Question 1: a. Below are the scatter plots of hourly wages

More information

Standard errors of marginal effects in the heteroskedastic probit model

Standard errors of marginal effects in the heteroskedastic probit model Standard errors of marginal effects in the heteroskedastic probit model Thomas Cornelißen Discussion Paper No. 320 August 2005 ISSN: 0949 9962 Abstract In non-linear regression models, such as the heteroskedastic

More information

ESTIMATING AVERAGE TREATMENT EFFECTS: IV AND CONTROL FUNCTIONS, II Jeff Wooldridge Michigan State University BGSE/IZA Course in Microeconometrics

ESTIMATING AVERAGE TREATMENT EFFECTS: IV AND CONTROL FUNCTIONS, II Jeff Wooldridge Michigan State University BGSE/IZA Course in Microeconometrics ESTIMATING AVERAGE TREATMENT EFFECTS: IV AND CONTROL FUNCTIONS, II Jeff Wooldridge Michigan State University BGSE/IZA Course in Microeconometrics July 2009 1. Quantile Treatment Effects 2. Control Functions

More information

LOGIT AND PROBIT ANALYSIS

LOGIT AND PROBIT ANALYSIS LOGIT AND PROBIT ANALYSIS A.K. Vasisht I.A.S.R.I., Library Avenue, New Delhi 110 012 amitvasisht@iasri.res.in In dummy regression variable models, it is assumed implicitly that the dependent variable Y

More information

Marginal Person. Average Person. (Average Return of College Goers) Return, Cost. (Average Return in the Population) (Marginal Return)

Marginal Person. Average Person. (Average Return of College Goers) Return, Cost. (Average Return in the Population) (Marginal Return) 1 2 3 Marginal Person Average Person (Average Return of College Goers) Return, Cost (Average Return in the Population) 4 (Marginal Return) 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

More information

Discussion Section 4 ECON 139/239 2010 Summer Term II

Discussion Section 4 ECON 139/239 2010 Summer Term II Discussion Section 4 ECON 139/239 2010 Summer Term II 1. Let s use the CollegeDistance.csv data again. (a) An education advocacy group argues that, on average, a person s educational attainment would increase

More information

ASSESSING FINANCIAL EDUCATION: EVIDENCE FROM BOOTCAMP. William Skimmyhorn. Online Appendix

ASSESSING FINANCIAL EDUCATION: EVIDENCE FROM BOOTCAMP. William Skimmyhorn. Online Appendix ASSESSING FINANCIAL EDUCATION: EVIDENCE FROM BOOTCAMP William Skimmyhorn Online Appendix Appendix Table 1. Treatment Variable Imputation Procedure Step Description Percent 1 Using administrative data,

More information

From the help desk: Swamy s random-coefficients model

From the help desk: Swamy s random-coefficients model The Stata Journal (2003) 3, Number 3, pp. 302 308 From the help desk: Swamy s random-coefficients model Brian P. Poi Stata Corporation Abstract. This article discusses the Swamy (1970) random-coefficients

More information

Institut für Soziologie Eberhard Karls Universität Tübingen www.maartenbuis.nl

Institut für Soziologie Eberhard Karls Universität Tübingen www.maartenbuis.nl from Indirect Extracting from Institut für Soziologie Eberhard Karls Universität Tübingen www.maartenbuis.nl from Indirect What is the effect of x on y? Which effect do I choose: average marginal or marginal

More information

Binary Logistic Regression

Binary Logistic Regression Binary Logistic Regression Main Effects Model Logistic regression will accept quantitative, binary or categorical predictors and will code the latter two in various ways. Here s a simple model including

More information

Lecture 3: Differences-in-Differences

Lecture 3: Differences-in-Differences Lecture 3: Differences-in-Differences Fabian Waldinger Waldinger () 1 / 55 Topics Covered in Lecture 1 Review of fixed effects regression models. 2 Differences-in-Differences Basics: Card & Krueger (1994).

More information

A Basic Introduction to Missing Data

A Basic Introduction to Missing Data John Fox Sociology 740 Winter 2014 Outline Why Missing Data Arise Why Missing Data Arise Global or unit non-response. In a survey, certain respondents may be unreachable or may refuse to participate. Item

More information

6/15/2005 7:54 PM. Affirmative Action s Affirmative Actions: A Reply to Sander

6/15/2005 7:54 PM. Affirmative Action s Affirmative Actions: A Reply to Sander Reply Affirmative Action s Affirmative Actions: A Reply to Sander Daniel E. Ho I am grateful to Professor Sander for his interest in my work and his willingness to pursue a valid answer to the critical

More information

Figure 1.1 Percentage of persons without health insurance coverage: all ages, United States, 1997-2001

Figure 1.1 Percentage of persons without health insurance coverage: all ages, United States, 1997-2001 Figure 1.1 Percentage of persons without health insurance coverage: all ages, United States, 1997-2001 DATA SOURCE: Family Core component of the 1997-2001 National Health Interview Surveys. The estimate

More information

Development of the nomolog program and its evolution

Development of the nomolog program and its evolution Development of the nomolog program and its evolution Towards the implementation of a nomogram generator for the Cox regression Alexander Zlotnik, Telecom.Eng. Víctor Abraira Santos, PhD Ramón y Cajal University

More information

Auxiliary Variables in Mixture Modeling: 3-Step Approaches Using Mplus

Auxiliary Variables in Mixture Modeling: 3-Step Approaches Using Mplus Auxiliary Variables in Mixture Modeling: 3-Step Approaches Using Mplus Tihomir Asparouhov and Bengt Muthén Mplus Web Notes: No. 15 Version 8, August 5, 2014 1 Abstract This paper discusses alternatives

More information

Lecture 15. Endogeneity & Instrumental Variable Estimation

Lecture 15. Endogeneity & Instrumental Variable Estimation Lecture 15. Endogeneity & Instrumental Variable Estimation Saw that measurement error (on right hand side) means that OLS will be biased (biased toward zero) Potential solution to endogeneity instrumental

More information

Nonlinear Regression Functions. SW Ch 8 1/54/

Nonlinear Regression Functions. SW Ch 8 1/54/ Nonlinear Regression Functions SW Ch 8 1/54/ The TestScore STR relation looks linear (maybe) SW Ch 8 2/54/ But the TestScore Income relation looks nonlinear... SW Ch 8 3/54/ Nonlinear Regression General

More information

Do Supplemental Online Recorded Lectures Help Students Learn Microeconomics?*

Do Supplemental Online Recorded Lectures Help Students Learn Microeconomics?* Do Supplemental Online Recorded Lectures Help Students Learn Microeconomics?* Jennjou Chen and Tsui-Fang Lin Abstract With the increasing popularity of information technology in higher education, it has

More information

Online Appendix The Earnings Returns to Graduating with Honors - Evidence from Law Graduates

Online Appendix The Earnings Returns to Graduating with Honors - Evidence from Law Graduates Online Appendix The Earnings Returns to Graduating with Honors - Evidence from Law Graduates Ronny Freier Mathias Schumann Thomas Siedler February 13, 2015 DIW Berlin and Free University Berlin. Universität

More information

Local classification and local likelihoods

Local classification and local likelihoods Local classification and local likelihoods November 18 k-nearest neighbors The idea of local regression can be extended to classification as well The simplest way of doing so is called nearest neighbor

More information

Marginal Effects for Continuous Variables Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 21, 2015

Marginal Effects for Continuous Variables Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 21, 2015 Marginal Effects for Continuous Variables Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 21, 2015 References: Long 1997, Long and Freese 2003 & 2006 & 2014,

More information

Wooldridge, Introductory Econometrics, 4th ed. Chapter 7: Multiple regression analysis with qualitative information: Binary (or dummy) variables

Wooldridge, Introductory Econometrics, 4th ed. Chapter 7: Multiple regression analysis with qualitative information: Binary (or dummy) variables Wooldridge, Introductory Econometrics, 4th ed. Chapter 7: Multiple regression analysis with qualitative information: Binary (or dummy) variables We often consider relationships between observed outcomes

More information

Forecasting in STATA: Tools and Tricks

Forecasting in STATA: Tools and Tricks Forecasting in STATA: Tools and Tricks Introduction This manual is intended to be a reference guide for time series forecasting in STATA. It will be updated periodically during the semester, and will be

More information

Logistic Regression. BUS 735: Business Decision Making and Research

Logistic Regression. BUS 735: Business Decision Making and Research Goals of this section 2/ 8 Specific goals: Learn how to conduct regression analysis with a dummy independent variable. Learning objectives: LO2: Be able to construct and use multiple regression models

More information

11. Analysis of Case-control Studies Logistic Regression

11. Analysis of Case-control Studies Logistic Regression Research methods II 113 11. Analysis of Case-control Studies Logistic Regression This chapter builds upon and further develops the concepts and strategies described in Ch.6 of Mother and Child Health:

More information

Why High-Order Polynomials Should Not be Used in Regression Discontinuity Designs

Why High-Order Polynomials Should Not be Used in Regression Discontinuity Designs Why High-Order Polynomials Should Not be Used in Regression Discontinuity Designs Andrew Gelman Guido Imbens 2 Aug 2014 Abstract It is common in regression discontinuity analysis to control for high order

More information

is paramount in advancing any economy. For developed countries such as

is paramount in advancing any economy. For developed countries such as Introduction The provision of appropriate incentives to attract workers to the health industry is paramount in advancing any economy. For developed countries such as Australia, the increasing demand for

More information

25 Working with categorical data and factor variables

25 Working with categorical data and factor variables 25 Working with categorical data and factor variables Contents 25.1 Continuous, categorical, and indicator variables 25.1.1 Converting continuous variables to indicator variables 25.1.2 Converting continuous

More information

Multiple Imputation for Missing Data: A Cautionary Tale

Multiple Imputation for Missing Data: A Cautionary Tale Multiple Imputation for Missing Data: A Cautionary Tale Paul D. Allison University of Pennsylvania Address correspondence to Paul D. Allison, Sociology Department, University of Pennsylvania, 3718 Locust

More information

Implementing Propensity Score Matching Estimators with STATA

Implementing Propensity Score Matching Estimators with STATA Implementing Propensity Score Matching Estimators with STATA Barbara Sianesi University College London and Institute for Fiscal Studies E-mail: barbara_s@ifs.org.uk Prepared for UK Stata Users Group, VII

More information

Returns to education on earnings in Italy: an evaluation using propensity score techniques

Returns to education on earnings in Italy: an evaluation using propensity score techniques Returns to education on earnings in Italy: an evaluation using propensity score techniques Elena Cottini Università Cattolica del Sacro Cuore, Milan PRELIMINARY DRAFT (June 2005) ABSTRACT: This paper investigates

More information

Average Redistributional Effects. IFAI/IZA Conference on Labor Market Policy Evaluation

Average Redistributional Effects. IFAI/IZA Conference on Labor Market Policy Evaluation Average Redistributional Effects IFAI/IZA Conference on Labor Market Policy Evaluation Geert Ridder, Department of Economics, University of Southern California. October 10, 2006 1 Motivation Most papers

More information

Handling missing data in Stata a whirlwind tour

Handling missing data in Stata a whirlwind tour Handling missing data in Stata a whirlwind tour 2012 Italian Stata Users Group Meeting Jonathan Bartlett www.missingdata.org.uk 20th September 2012 1/55 Outline The problem of missing data and a principled

More information

From the help desk: Bootstrapped standard errors

From the help desk: Bootstrapped standard errors The Stata Journal (2003) 3, Number 1, pp. 71 80 From the help desk: Bootstrapped standard errors Weihua Guan Stata Corporation Abstract. Bootstrapping is a nonparametric approach for evaluating the distribution

More information

Public Health Insurance Expansions for Parents and Enhancement Effects for Child Coverage

Public Health Insurance Expansions for Parents and Enhancement Effects for Child Coverage Public Health Insurance Expansions for Parents and Enhancement Effects for Child Coverage Jason R. Davis, University of Wisconsin Stevens Point ABSTRACT In 1997, the federal government provided states

More information

Washington State s Integrated Basic Education and Skills Training Program (I-BEST): New Evidence of Effectiveness

Washington State s Integrated Basic Education and Skills Training Program (I-BEST): New Evidence of Effectiveness Washington State s Integrated Basic Education and Skills Training Program (I-BEST): New Evidence of Effectiveness Matthew Zeidenberg Sung-Woo Cho Davis Jenkins September 2010 CCRC Working Paper No. 20

More information

Regression Analysis of the Relationship between Income and Work Hours

Regression Analysis of the Relationship between Income and Work Hours Regression Analysis of the Relationship between Income and Work Hours Sina Mehdikarimi Samuel Norris Charles Stalzer Georgia Institute of Technology Econometric Analysis (ECON 3161) Dr. Shatakshee Dhongde

More information

Comparing Features of Convenient Estimators for Binary Choice Models With Endogenous Regressors

Comparing Features of Convenient Estimators for Binary Choice Models With Endogenous Regressors Comparing Features of Convenient Estimators for Binary Choice Models With Endogenous Regressors Arthur Lewbel, Yingying Dong, and Thomas Tao Yang Boston College, University of California Irvine, and Boston

More information

How does Access to Short Term Disability Insurance Impact SSDI Claiming? *

How does Access to Short Term Disability Insurance Impact SSDI Claiming? * How does Access to Short Term Disability Insurance Impact SSDI Claiming? * David Autor, MIT and NBER Mark Duggan, University of Pennsylvania and NBER Jonathan Gruber, MIT and NBER Catherine Maclean, University

More information

Practical. I conometrics. data collection, analysis, and application. Christiana E. Hilmer. Michael J. Hilmer San Diego State University

Practical. I conometrics. data collection, analysis, and application. Christiana E. Hilmer. Michael J. Hilmer San Diego State University Practical I conometrics data collection, analysis, and application Christiana E. Hilmer Michael J. Hilmer San Diego State University Mi Table of Contents PART ONE THE BASICS 1 Chapter 1 An Introduction

More information

ECON 523 Applied Econometrics I /Masters Level American University, Spring 2008. Description of the course

ECON 523 Applied Econometrics I /Masters Level American University, Spring 2008. Description of the course ECON 523 Applied Econometrics I /Masters Level American University, Spring 2008 Instructor: Maria Heracleous Lectures: M 8:10-10:40 p.m. WARD 202 Office: 221 Roper Phone: 202-885-3758 Office Hours: M W

More information

ONLINE APPENDIX FOR PUBLIC HEALTH INSURANCE, LABOR SUPPLY,

ONLINE APPENDIX FOR PUBLIC HEALTH INSURANCE, LABOR SUPPLY, ONLINE APPENDIX FOR PUBLIC HEALTH INSURANCE, LABOR SUPPLY, AND EMPLOYMENT LOCK Craig Garthwaite Tal Gross Matthew J. Notowidigdo December 2013 A1. Monte Carlo Simulations This section describes a set of

More information

The effect of tax subsidies to employer-provided supplementary health insurance: evidence from Canada

The effect of tax subsidies to employer-provided supplementary health insurance: evidence from Canada Journal of Public Economics 84 (2002) 305 339 www.elsevier.com/ locate/ econbase The effect of tax subsidies to employer-provided supplementary health insurance: evidence from Canada Amy Finkelstein* Department

More information

Missing Data & How to Deal: An overview of missing data. Melissa Humphries Population Research Center

Missing Data & How to Deal: An overview of missing data. Melissa Humphries Population Research Center Missing Data & How to Deal: An overview of missing data Melissa Humphries Population Research Center Goals Discuss ways to evaluate and understand missing data Discuss common missing data methods Know

More information

Propensity scores for the estimation of average treatment effects in observational studies

Propensity scores for the estimation of average treatment effects in observational studies Propensity scores for the estimation of average treatment effects in observational studies Leonardo Grilli and Carla Rampichini Dipartimento di Statistica Giuseppe Parenti Universit di Firenze Training

More information

Estimating the random coefficients logit model of demand using aggregate data

Estimating the random coefficients logit model of demand using aggregate data Estimating the random coefficients logit model of demand using aggregate data David Vincent Deloitte Economic Consulting London, UK davivincent@deloitte.co.uk September 14, 2012 Introduction Estimation

More information

Rethinking the Cultural Context of Schooling Decisions in Disadvantaged Neighborhoods: From Deviant Subculture to Cultural Heterogeneity

Rethinking the Cultural Context of Schooling Decisions in Disadvantaged Neighborhoods: From Deviant Subculture to Cultural Heterogeneity Rethinking the Cultural Context of Schooling Decisions in Disadvantaged Neighborhoods: From Deviant Subculture to Cultural Heterogeneity Sociology of Education David J. Harding, University of Michigan

More information

Education and Wage Differential by Race: Convergence or Divergence? *

Education and Wage Differential by Race: Convergence or Divergence? * Education and Wage Differential by Race: Convergence or Divergence? * Tian Luo Thesis Advisor: Professor Andrea Weber University of California, Berkeley Department of Economics April 2009 Abstract This

More information

Statistics 104 Final Project A Culture of Debt: A Study of Credit Card Spending in America TF: Kevin Rader Anonymous Students: LD, MH, IW, MY

Statistics 104 Final Project A Culture of Debt: A Study of Credit Card Spending in America TF: Kevin Rader Anonymous Students: LD, MH, IW, MY Statistics 104 Final Project A Culture of Debt: A Study of Credit Card Spending in America TF: Kevin Rader Anonymous Students: LD, MH, IW, MY ABSTRACT: This project attempted to determine the relationship

More information

Chapter 7: Simple linear regression Learning Objectives

Chapter 7: Simple linear regression Learning Objectives Chapter 7: Simple linear regression Learning Objectives Reading: Section 7.1 of OpenIntro Statistics Video: Correlation vs. causation, YouTube (2:19) Video: Intro to Linear Regression, YouTube (5:18) -

More information

Interaction effects and group comparisons Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 20, 2015

Interaction effects and group comparisons Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 20, 2015 Interaction effects and group comparisons Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 20, 2015 Note: This handout assumes you understand factor variables,

More information

Rates for Vehicle Loans: Race and Loan Source

Rates for Vehicle Loans: Race and Loan Source Rates for Vehicle Loans: Race and Loan Source Kerwin Kofi Charles Harris School University of Chicago 1155 East 60th Street Chicago, IL 60637 Voice: (773) 834-8922 Fax: (773) 702-0926 e-mail: kcharles@gmail.com

More information

Statistical modelling with missing data using multiple imputation. Session 4: Sensitivity Analysis after Multiple Imputation

Statistical modelling with missing data using multiple imputation. Session 4: Sensitivity Analysis after Multiple Imputation Statistical modelling with missing data using multiple imputation Session 4: Sensitivity Analysis after Multiple Imputation James Carpenter London School of Hygiene & Tropical Medicine Email: james.carpenter@lshtm.ac.uk

More information

A Panel Data Analysis of Corporate Attributes and Stock Prices for Indian Manufacturing Sector

A Panel Data Analysis of Corporate Attributes and Stock Prices for Indian Manufacturing Sector Journal of Modern Accounting and Auditing, ISSN 1548-6583 November 2013, Vol. 9, No. 11, 1519-1525 D DAVID PUBLISHING A Panel Data Analysis of Corporate Attributes and Stock Prices for Indian Manufacturing

More information

Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software

Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software STATA Tutorial Professor Erdinç Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software 1.Wald Test Wald Test is used

More information

Profit-sharing and the financial performance of firms: Evidence from Germany

Profit-sharing and the financial performance of firms: Evidence from Germany Profit-sharing and the financial performance of firms: Evidence from Germany Kornelius Kraft and Marija Ugarković Department of Economics, University of Dortmund Vogelpothsweg 87, 44227 Dortmund, Germany,

More information

Online Appendix to Are Risk Preferences Stable Across Contexts? Evidence from Insurance Data

Online Appendix to Are Risk Preferences Stable Across Contexts? Evidence from Insurance Data Online Appendix to Are Risk Preferences Stable Across Contexts? Evidence from Insurance Data By LEVON BARSEGHYAN, JEFFREY PRINCE, AND JOSHUA C. TEITELBAUM I. Empty Test Intervals Here we discuss the conditions

More information

Missing data in randomized controlled trials (RCTs) can

Missing data in randomized controlled trials (RCTs) can EVALUATION TECHNICAL ASSISTANCE BRIEF for OAH & ACYF Teenage Pregnancy Prevention Grantees May 2013 Brief 3 Coping with Missing Data in Randomized Controlled Trials Missing data in randomized controlled

More information

HURDLE AND SELECTION MODELS Jeff Wooldridge Michigan State University BGSE/IZA Course in Microeconometrics July 2009

HURDLE AND SELECTION MODELS Jeff Wooldridge Michigan State University BGSE/IZA Course in Microeconometrics July 2009 HURDLE AND SELECTION MODELS Jeff Wooldridge Michigan State University BGSE/IZA Course in Microeconometrics July 2009 1. Introduction 2. A General Formulation 3. Truncated Normal Hurdle Model 4. Lognormal

More information

Chapter Seven. Multiple regression An introduction to multiple regression Performing a multiple regression on SPSS

Chapter Seven. Multiple regression An introduction to multiple regression Performing a multiple regression on SPSS Chapter Seven Multiple regression An introduction to multiple regression Performing a multiple regression on SPSS Section : An introduction to multiple regression WHAT IS MULTIPLE REGRESSION? Multiple

More information

Missing Data Part 1: Overview, Traditional Methods Page 1

Missing Data Part 1: Overview, Traditional Methods Page 1 Missing Data Part 1: Overview, Traditional Methods Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised January 17, 2015 This discussion borrows heavily from: Applied

More information

The Long-Run Effects of Attending an Elite School: Evidence from the UK (Damon Clark and Emilia Del Bono): Online Appendix

The Long-Run Effects of Attending an Elite School: Evidence from the UK (Damon Clark and Emilia Del Bono): Online Appendix The Long-Run Effects of Attending an Elite School: Evidence from the UK (Damon Clark and Emilia Del Bono): Online Appendix Appendix A: Additional Figures and Tables Appendix B: Aberdeen Cohort and Labour

More information

Additional sources Compilation of sources: http://lrs.ed.uiuc.edu/tseportal/datacollectionmethodologies/jin-tselink/tselink.htm

Additional sources Compilation of sources: http://lrs.ed.uiuc.edu/tseportal/datacollectionmethodologies/jin-tselink/tselink.htm Mgt 540 Research Methods Data Analysis 1 Additional sources Compilation of sources: http://lrs.ed.uiuc.edu/tseportal/datacollectionmethodologies/jin-tselink/tselink.htm http://web.utk.edu/~dap/random/order/start.htm

More information

Employer-Provided Health Insurance and Labor Supply of Married Women

Employer-Provided Health Insurance and Labor Supply of Married Women Upjohn Institute Working Papers Upjohn Research home page 2011 Employer-Provided Health Insurance and Labor Supply of Married Women Merve Cebi University of Massachusetts - Dartmouth and W.E. Upjohn Institute

More information

Machine Learning Methods for Causal Effects. Susan Athey, Stanford University Guido Imbens, Stanford University

Machine Learning Methods for Causal Effects. Susan Athey, Stanford University Guido Imbens, Stanford University Machine Learning Methods for Causal Effects Susan Athey, Stanford University Guido Imbens, Stanford University Introduction Supervised Machine Learning v. Econometrics/Statistics Lit. on Causality Supervised

More information

III. INTRODUCTION TO LOGISTIC REGRESSION. a) Example: APACHE II Score and Mortality in Sepsis

III. INTRODUCTION TO LOGISTIC REGRESSION. a) Example: APACHE II Score and Mortality in Sepsis III. INTRODUCTION TO LOGISTIC REGRESSION 1. Simple Logistic Regression a) Example: APACHE II Score and Mortality in Sepsis The following figure shows 30 day mortality in a sample of septic patients as

More information

An assessment of consumer willingness to pay for Renewable Energy Sources use in Italy: a payment card approach.

An assessment of consumer willingness to pay for Renewable Energy Sources use in Italy: a payment card approach. An assessment of consumer willingness to pay for Renewable Energy Sources use in Italy: a payment card approach. -First findings- University of Perugia Department of Economics, Finance and Statistics 1

More information

Stata Walkthrough 4: Regression, Prediction, and Forecasting

Stata Walkthrough 4: Regression, Prediction, and Forecasting Stata Walkthrough 4: Regression, Prediction, and Forecasting Over drinks the other evening, my neighbor told me about his 25-year-old nephew, who is dating a 35-year-old woman. God, I can t see them getting

More information

Introduction to Fixed Effects Methods

Introduction to Fixed Effects Methods Introduction to Fixed Effects Methods 1 1.1 The Promise of Fixed Effects for Nonexperimental Research... 1 1.2 The Paired-Comparisons t-test as a Fixed Effects Method... 2 1.3 Costs and Benefits of Fixed

More information

Expression. Variable Equation Polynomial Monomial Add. Area. Volume Surface Space Length Width. Probability. Chance Random Likely Possibility Odds

Expression. Variable Equation Polynomial Monomial Add. Area. Volume Surface Space Length Width. Probability. Chance Random Likely Possibility Odds Isosceles Triangle Congruent Leg Side Expression Equation Polynomial Monomial Radical Square Root Check Times Itself Function Relation One Domain Range Area Volume Surface Space Length Width Quantitative

More information

Multinomial and Ordinal Logistic Regression

Multinomial and Ordinal Logistic Regression Multinomial and Ordinal Logistic Regression ME104: Linear Regression Analysis Kenneth Benoit August 22, 2012 Regression with categorical dependent variables When the dependent variable is categorical,

More information

Answer: C. The strength of a correlation does not change if units change by a linear transformation such as: Fahrenheit = 32 + (5/9) * Centigrade

Answer: C. The strength of a correlation does not change if units change by a linear transformation such as: Fahrenheit = 32 + (5/9) * Centigrade Statistics Quiz Correlation and Regression -- ANSWERS 1. Temperature and air pollution are known to be correlated. We collect data from two laboratories, in Boston and Montreal. Boston makes their measurements

More information

Iowa School District Profiles. Central City

Iowa School District Profiles. Central City Iowa School District Profiles Overview This profile describes enrollment trends, student performance, income levels, population, and other characteristics of the Central City public school district. The

More information

STATISTICA Formula Guide: Logistic Regression. Table of Contents

STATISTICA Formula Guide: Logistic Regression. Table of Contents : Table of Contents... 1 Overview of Model... 1 Dispersion... 2 Parameterization... 3 Sigma-Restricted Model... 3 Overparameterized Model... 4 Reference Coding... 4 Model Summary (Summary Tab)... 5 Summary

More information

Employment E ects of Service O shoring: Evidence from Matched Firms

Employment E ects of Service O shoring: Evidence from Matched Firms Employment E ects of Service O shoring: Evidence from Matched Firms Rosario Crinò Institut d Anàlisi Econòmica, CSIC December, 2009 Abstract This paper studies the e ects of service o shoring on the level

More information

Failure to take the sampling scheme into account can lead to inaccurate point estimates and/or flawed estimates of the standard errors.

Failure to take the sampling scheme into account can lead to inaccurate point estimates and/or flawed estimates of the standard errors. Analyzing Complex Survey Data: Some key issues to be aware of Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised January 24, 2015 Rather than repeat material that is

More information

Universal Health Insurance And Mortality: Evidence From Massachusetts

Universal Health Insurance And Mortality: Evidence From Massachusetts Universal Health Insurance And Mortality: Evidence From Massachusetts Charles Courtemanche Georgia State University and NBER Daniela Zapata IMPAQ International Chapter 58 and the ACA follow the same Three-legged

More information

Duration Analysis. Econometric Analysis. Dr. Keshab Bhattarai. April 4, 2011. Hull Univ. Business School

Duration Analysis. Econometric Analysis. Dr. Keshab Bhattarai. April 4, 2011. Hull Univ. Business School Duration Analysis Econometric Analysis Dr. Keshab Bhattarai Hull Univ. Business School April 4, 2011 Dr. Bhattarai (Hull Univ. Business School) Duration April 4, 2011 1 / 27 What is Duration Analysis?

More information

MODEL I: DRINK REGRESSED ON GPA & MALE, WITHOUT CENTERING

MODEL I: DRINK REGRESSED ON GPA & MALE, WITHOUT CENTERING Interpreting Interaction Effects; Interaction Effects and Centering Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised February 20, 2015 Models with interaction effects

More information

Item Nonresponse in Wages: Testing for Biased Estimates in Wage Equations

Item Nonresponse in Wages: Testing for Biased Estimates in Wage Equations RUHR ECONOMIC PAPERS Michael Fertig Katja Görlitz Item Nonresponse in Wages: Testing for Biased Estimates in Wage Equations #333 Imprint Ruhr Economic Papers Published by Ruhr-Universität Bochum (RUB),

More information

Multiple logistic regression analysis of cigarette use among high school students

Multiple logistic regression analysis of cigarette use among high school students Multiple logistic regression analysis of cigarette use among high school students ABSTRACT Joseph Adwere-Boamah Alliant International University A binary logistic regression analysis was performed to predict

More information

Multiple Linear Regression in Data Mining

Multiple Linear Regression in Data Mining Multiple Linear Regression in Data Mining Contents 2.1. A Review of Multiple Linear Regression 2.2. Illustration of the Regression Process 2.3. Subset Selection in Linear Regression 1 2 Chap. 2 Multiple

More information

STATISTICAL ANALYSIS OF UBC FACULTY SALARIES: INVESTIGATION OF

STATISTICAL ANALYSIS OF UBC FACULTY SALARIES: INVESTIGATION OF STATISTICAL ANALYSIS OF UBC FACULTY SALARIES: INVESTIGATION OF DIFFERENCES DUE TO SEX OR VISIBLE MINORITY STATUS. Oxana Marmer and Walter Sudmant, UBC Planning and Institutional Research SUMMARY This paper

More information

How to set the main menu of STATA to default factory settings standards

How to set the main menu of STATA to default factory settings standards University of Pretoria Data analysis for evaluation studies Examples in STATA version 11 List of data sets b1.dta (To be created by students in class) fp1.xls (To be provided to students) fp1.txt (To be

More information

Descriptive Statistics

Descriptive Statistics Descriptive Statistics Primer Descriptive statistics Central tendency Variation Relative position Relationships Calculating descriptive statistics Descriptive Statistics Purpose to describe or summarize

More information

HEALTH INSURANCE COVERAGE STATUS. 2009-2013 American Community Survey 5-Year Estimates

HEALTH INSURANCE COVERAGE STATUS. 2009-2013 American Community Survey 5-Year Estimates S2701 HEALTH INSURANCE COVERAGE STATUS 2009-2013 American Community Survey 5-Year Estimates Supporting documentation on code lists, subject definitions, data accuracy, and statistical testing can be found

More information

How To Find Out If A Local Market Price Is Lower Than A Local Price

How To Find Out If A Local Market Price Is Lower Than A Local Price Agricultural Contracts and Alternative Marketing Options: A Matching Analysis Ani L. Katchova University of Illinois Contact Information: Ani L. Katchova University of Illinois 326 Mumford Hall, MC-710

More information

USUAL WEEKLY EARNINGS OF WAGE AND SALARY WORKERS FIRST QUARTER 2015

USUAL WEEKLY EARNINGS OF WAGE AND SALARY WORKERS FIRST QUARTER 2015 For release 10:00 a.m. (EDT) Tuesday, April 21, USDL-15-0688 Technical information: (202) 691-6378 cpsinfo@bls.gov www.bls.gov/cps Media contact: (202) 691-5902 PressOffice@bls.gov USUAL WEEKLY EARNINGS

More information

Using the National Longitudinal Survey

Using the National Longitudinal Survey Who goes to college? Evidence from the NLSY97 s from the National Longitudinal Survey of Youth 997 show that sex, race, and ethnicity are unrelated to the student s decision to complete the first year

More information

Propensity Score Matching Regression Discontinuity Limited Dependent Variables

Propensity Score Matching Regression Discontinuity Limited Dependent Variables Propensity Score Matching Regression Discontinuity Limited Dependent Variables Christopher F Baum EC 823: Applied Econometrics Boston College, Spring 2013 Christopher F Baum (BC / DIW) PSM, RD, LDV Boston

More information

Multivariate Models of Student Success

Multivariate Models of Student Success Multivariate Models of Student Success RP Group/CISOA Conference April 28, 2009 Granlibakken, Lake Tahoe Dr. Matt Wetstein Dean of Planning, Research and Institutional Effectiveness San Joaquin Delta College

More information

Organizing Your Approach to a Data Analysis

Organizing Your Approach to a Data Analysis Biost/Stat 578 B: Data Analysis Emerson, September 29, 2003 Handout #1 Organizing Your Approach to a Data Analysis The general theme should be to maximize thinking about the data analysis and to minimize

More information

Regression with a Binary Dependent Variable

Regression with a Binary Dependent Variable Regression with a Binary Dependent Variable Chapter 9 Michael Ash CPPA Lecture 22 Course Notes Endgame Take-home final Distributed Friday 19 May Due Tuesday 23 May (Paper or emailed PDF ok; no Word, Excel,

More information

Washington State s Integrated Basic Education and Skills Training Program (I-BEST): New Evidence of Effectiveness

Washington State s Integrated Basic Education and Skills Training Program (I-BEST): New Evidence of Effectiveness Washington State s Integrated Basic Education and Skills Training Program (I-BEST): New Evidence of Effectiveness Matthew Zeidenberg Sung-Woo Cho Davis Jenkins September 2010 CCRC Working Paper No. 20

More information

Earnings in private jobs after participation to post-doctoral programs : an assessment using a treatment effect model. Isabelle Recotillet

Earnings in private jobs after participation to post-doctoral programs : an assessment using a treatment effect model. Isabelle Recotillet Earnings in private obs after participation to post-doctoral programs : an assessment using a treatment effect model Isabelle Recotillet Institute of Labor Economics and Industrial Sociology, UMR 6123,

More information

HYPOTHESIS TESTING: CONFIDENCE INTERVALS, T-TESTS, ANOVAS, AND REGRESSION

HYPOTHESIS TESTING: CONFIDENCE INTERVALS, T-TESTS, ANOVAS, AND REGRESSION HYPOTHESIS TESTING: CONFIDENCE INTERVALS, T-TESTS, ANOVAS, AND REGRESSION HOD 2990 10 November 2010 Lecture Background This is a lightning speed summary of introductory statistical methods for senior undergraduate

More information