Panel data methods for policy analysis

Size: px
Start display at page:

Download "Panel data methods for policy analysis"

Transcription

1 IAPRI Quantitative Analysis Capacity Building Series Panel data methods for policy analysis Part I: Linear panel data models

2 Outline 1. Independently pooled cross sectional data vs. panel/longitudinal data 2. Analysis of independently pooled cross sectional data 3. Analysis of panel data (linear models) a. Unobserved effects panel data model b. Pooled ordinary least squares c. First-differenced estimator d. Fixed effects estimator e. Random effects estimator 4. Intro to correlated random effects (CRE) approach à will revisit in future session on non-linear panel data models 5. Difference-in-differences estimator 6. General program evaluation model 7. Attrition (definition, testing, correcting w/ IPW)

3 Independently pooled cross sectional data vs. panel/longitudinal data What is independently pooled cross sectional (IPCS) data? o Zambia examples? o Are observations i.i.d? What is panel/longitudinal data? o Zambia examples? o Are observations i.i.d?

4 Source: Wooldridge (2002)

5 Source: Wooldridge (2002)

6 Analysis of independently pooled cross sectional data Why pool independent cross sections? Distribution may not be identical over time. What to do? How to allow effect of a given explanatory variable to change over time? Estimate linear model with pooled OLS (POLS), possibly correcting for heteroskedasticity. (Serial correlation is not an issue why?)

7 Chow Test for Structural Change (can do w/ IPCS or panel or time series data) Do all slope coefficients change over time? Suppose we have 2 years of data (2008 & 2012) and our base model is: y = β 0 + δ 0 d β 1 x 1 + β 2 x 2 + u à How to test for structural change?

8 Unobserved effects panel data model y it = β 0 + β 1 x it + c i + u it, t = 1, 2,...,T Two-part error term: o c i time invariant unobserved effects ( unobserved heterogeneity ) o u it idiosyncratic (or time-varying) error Want to estimate β 1. What do we need to assume about c i and x it for POLS to be consistent?

9 If c i and x it are correlated, transform the data to eliminate c i before using OLS 2 options: first differencing or time-demeaning EX) First differencing w/ 2 years of data y i2 = β 0 + β 1 x i2 + c i + u i2 (t = 2) y i1 = β 0 + β 1 x i1 + c i + u i1 (t = 1) ( y i2 y i1 ) = β 1 (x i2 x i1 ) + (u i2 u i1 ) or Δy i = β 1 Δx i + Δu i OLS on differenced equation = firstdifferenced estimator

10 If c i and x it are correlated, transform the data to eliminate c i before using OLS 2 options: first differencing or time-demeaning EX) Time-demeaning w/ 2+ years of data y it = β 0 + β 1 x it + c i + u it, y i = β 0 + β 1 x i + c i + u i t = 1, 2,..., T y it y i = β 1 (x it x i ) + (u it u i ), t = 1, 2,..., T or y it = β 1 x it + u it, t = 1, 2,..., T OLS on timedemeaned equation = fixed effects estimator

11 First differencing vs. Fixed effects FD and FE are identical if T=2 and include year dummy for 2 nd time period Not identical if T>2 o Both unbiased & consistent o FE more efficient than FD if u it serially uncorrelated. Why?

12 FD vs. FE (cont d) FE more efficient if u it serially uncorrelated b/c differencing introduces serial correlation (in Δu it ) Δu it = u it u it-1 ; Δu it-1 = u it-1 u it-2 Is Cov(Δu it, Δu it-1 )=0??? FD more efficient if u it is a random walk Random walk: u it = a + u it-1 + e it (where e it is white noise) Δu it = u it u it-1 = a + e it à implies Δu it is white noise

13 Key assumption for FD & FE estimators to be consistent: strict exogeneity Strict exogeneity: explanatory variables (x it ) are uncorrelated with the idiosyncratic error (u it ) in ALL time periods o Rules out including lagged dependent variable (y it-1 ) as explanatory variable. Why? o Also rules out feedback from y it to x it+1 See Wooldridge texts for details on all assumptions for consistency, efficiency

14 If assume c i and x it are uncorrelated è random effects (RE) estimator Like FD and FE, RE requires strict exogeneity to be consistent Assumption that c i and x it are uncorrelated is strong but if really uncorrelated, then efficiency gain if use RE instead of FD/FE o Efficiency gain: explicitly modeling serial correlation in composite error term (v it =c i +u it ) via feasible GLS

15 Random effects transformation y it ˆλ y i = β 0 (1 ˆλ) + β 1 (x it ˆλx i ) +(v it ˆλv i ) where ˆλ = 1 [ σˆ 2 / ( σˆ 2 + Tσˆ 2 )] 1/2 u u a and σˆ 2 = Var u (uit ), σˆ 2 = Var a (ai ) Key point is that RE transformation quasi-time demeans the data, and the POLS & FE are special cases of FE Note that if ˆλ = 0 POLS ˆλ = 1 FE

16 Stata commands FD: generate change variables then <reg> FE: xtreg y x1 x2 xk, fe RE: xtreg y x1 x2 xk, re Robust standard errors (put at end of commands above): o Heteroskedasticity only: <robust> o Hetero. and serial correlation: <cluster(clustervar)>

17 Hausman test of FE vs. RE Basically tests if c i and x it are uncorrelated Stata code: xtreg y x1 x2 xk, fe estimates store fixed xtreg y x1 x2 xk, re hausman fixed., sigmamore

18 Correlated random effects (CRE) Fixed effects-like approaches to control for c i generally inconsistent in non-linear models (e.g., probit, Tobit, hurdle models, etc.; incidental parameters problem) Alternative: CRE approach a.k.a. Mundlak- Chamberlain device Make assumption about distribution of c i : c i =ψ + x i ξ + a i where a i x i Normal(0,σ a 2 )

19 Intro to CRE approach (cont.) Like FE & FD, need to assume strict exogeneity CRE: include time averages of time-varying variables ( x i ) as additional regressors in probit or Tobit Unlike FD & FE, can include time-constant regressors in CRE models CRE-POLS slope parameters identical to FE (see Stata example). Why?

20 Summary of linear panel data estimators (FD, FE, CRE-POLS, RE) Note: All 4 require strict exogeneity (so can t have lagged dependent variable or feedback from y it to x it+1 ) c i correlated w/ x it? Yes Hausman test RE vs. FE No All 4 are consistent but RE is most efficient FD, FE, CRE-POLS consistent Key explanatory variable of interest is time-constant? No Yes CRE-POLS FD, FE Original error term (u it ) serially Yes uncorrelated (i.e., no autocorrelation)? No FE more efficient FD more efficient if u it ~ random walk

21 General program evaluation model y it = α + γ prog it + x it β + dyear it δ + c i + u it prog = binary or continuous measure of program participation or policy Key parameter estimate of interest? prog correlated w/ c i but not u it è How to consistently estimate γ? prog correlated w/ u it è endogeneity problem (future session)

22 Attrition in panel datasets What is attrition? Why does it happen? If reason for not being re-interviewed is correlated with error term, then have attrition bias o If only correlated with c i, then can control for attrition bias with FD, FE, CRE. (Not an issue w/ RE why?) o If correlated with u it, then have a problem

23 Testing for attrition bias No regression-based test when T=2 and using FE, FD, or CRE. Why? If T=2 and not using FE/FD/CRE OR T>2 and using FE/FD/CRE, can test for attrition bias by: 1. Create re-interview dummy variable, reinterview it =1 if HH is re-interviewed in next wave =0 o.w. 2. Include as additional regressor in model 3. If p 0.10 (or your cutoff) è attrition bias. Why? This test assumes that attrition is an absorbing state.

24 Inverse Probability Weighting (IPW) to control for attrition bias Compatible w/ POLS, FD, & non-panel estimators NOT compatible w/ FE, RE, CRE IPW approach: 2-period panel (ex: UCS) 1. Estimate reduced form probit/logit with dep. var. =1 if HH was re-interviewed in 2 nd wave =0 o.w. Use all observations from 1 st wave in probit/logit. Regressors are everything from structural model and anything else you think might affect attrition (e.g., enumerator/supervisor dummies). à Get predicted probability of re-interview. 2. Compute IPW= 1/(predicted probability of re-interview) 3. Weight 2 nd period observations by IPW. (If using sampling weights, use sampling weight*1 in 1 st period; sampling weight*ipw in 2 nd period.)

25 IPW (cont d) 3-period panel (ex: SS) **Assume attrition is an absorbing state. 1. Same as 2-period panel to get IPW for t=2 (call it IPW i,2 ) 2. To get IPW for t=3: a. Estimate reduced form probit/logit with dep. var. =1 if HH was re-interviewed in 3 rd wave =0 o.w. Use all observations from 2 nd wave. Same regressors as previous slide.à Get predicted probability of re-interview. b. Compute IPW i,3 = IPW i,2 *[1/(predicted probability of re-interview)] 3. Weight 2 nd period observations by IPW i,2, 3 rd period observations by IPW i,3. (If using sampling weights, use sampling weight*1 in 1 st period; sampling weight*ipw i,2 in 2 nd period; sampling weight*ipw i,3 in 3 rd period.) Similar approach for >3 period panel.

26 IPW i,1 = 1 IPW i,2 = IPW i,1 IPW i,3 = IPW i,2... IPW i,t = IPW i,t 1 1 ˆp i,2 = 1 1 ˆp i,3 = 1 IPW (cont d) 1 ˆp i,2 1 ˆp i,t = 1 1 ˆp i,2 1 ˆp i,3 1 ˆp i,2 1 ˆp i,3... where ˆp i,t is the pred. prob. of being re-interviewed in round t. 1 ˆp i,t If using sampling weights, then in period t, multiply weight by IPW i,t.

27 See handout on Econometric & other impact assessment approaches to policy analysis: the problem of causality in policy analysis, and internal vs. external validity

28 Difference-in-differences (DD) In general: estimator y = β 0 + β 1 dtreat + δ 0 dafter + δ 1 dafter dtreat + u ˆ δ 1 = ( y treat,after y treat,before ) ( y control,after y control,before ) δˆ 1 is the average treatment effect (ATE) Important to control for other factors If do, simple expression for δˆ 1 not the same but interpretation is similar Useful for analysis of natural/quasiexperiments

29 Key assumption for DD: time invariant selection bias (parallel trend) Treatment effect Same Selection bias DD estimate = Treatment effect Source: Ravallion (2008)

30 Time-varying selection bias (nonparallel trend) causes DD to be biased Treatment effect Different Selection bias DD estimate Treatment effect (here < ) Source: Ravallion (2008)

31 Difference-in-differences (DD) estimator w/ IPCS data (can also do w/ panel data) Useful for policy analysis if collected before & after policy change/event EX) Effect of new farm block on land values in nearby areas o Data for 2008 & 2012 (before & after) o rvland: real value of land per ha (ZMK, 2012=100) o dnearfb: =1 if land near farm block; =0 o.w. rvland = β 0 + β 1 dnearfb + δ 0 d δ 1 d2012idnearfb + u o Estimate via pooled OLS (POLS) ˆ δ 1 = (rvland 12,nr rvland 12, fr ) (rvland 08,nr rvland 08, fr ) = difference over time in average difference of land values in the 2 locations = estimated parameter of interest (average treatment effect)

32 References Ravallion, M Evaluating Anti-Poverty Programs. In T.P. Schultz and J. Strauss, eds. Handbook of Development Economics, Volume 4. Amsterdam: North- Holland, pp Wooldridge, J. M Introductory Econometrics: A Modern Approach, 4 th Edition. Mason, OH: South-Western Cengage Learning. Wooldridge, J.M Econometric Analysis of Cross Section and Panel Data, 2 nd Edition. Cambridge, MA: MIT Press. Wooldridge, J.M. 2009/2010. Class notes from EC 821, Econometrics IIA & IIB. Michigan State University Department of Economics. East Lansing, MI. Slides prepared by Nicole Mason, October Updated January masonn@msu.edu

Lecture 9: Panel Data Model (Chapter 14, Wooldridge Textbook)

Lecture 9: Panel Data Model (Chapter 14, Wooldridge Textbook) Lecture 9: Panel Data Model (Chapter 14, Wooldridge Textbook) 1 2 Panel Data Panel data is obtained by observing the same person, firm, county, etc over several periods. Unlike the pooled cross sections,

More information

Econometric Analysis of Cross Section and Panel Data

Econometric Analysis of Cross Section and Panel Data Econometric Analysis of Cross Section and Panel Data Jeffrey M. Wooldridge / The MIT Press Cambridge, Massachusetts London, England Contents Preface Acknowledgments xvii xxiii I INTRODUCTION AND BACKGROUND

More information

Econometrics. Week 6. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague

Econometrics. Week 6. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Econometrics Week 6 Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Fall 2012 1 / 21 Recommended Reading For the today Advanced Panel Data Methods. Chapter 14 (pp.

More information

Applied Microeconometrics (L5): Panel Data-Basics

Applied Microeconometrics (L5): Panel Data-Basics Applied Microeconometrics (L5): Panel Data-Basics Nicholas Giannakopoulos University of Patras Department of Economics ngias@upatras.gr November 10, 2015 Nicholas Giannakopoulos (UPatras) MSc Applied Economics

More information

Applied Quantitative Methods II

Applied Quantitative Methods II Applied Quantitative Methods II Lecture 10: Panel Data Klára Kaĺıšková Klára Kaĺıšková AQM II - Lecture 10 VŠE, SS 2016/17 1 / 38 Outline 1 Introduction 2 Pooled OLS 3 First differences 4 Fixed effects

More information

EC327: Advanced Econometrics, Spring 2007

EC327: Advanced Econometrics, Spring 2007 EC327: Advanced Econometrics, Spring 2007 Wooldridge, Introductory Econometrics (3rd ed, 2006) Chapter 14: Advanced panel data methods Fixed effects estimators We discussed the first difference (FD) model

More information

Intro to Applied Econometrics: Basic theory and Stata examples

Intro to Applied Econometrics: Basic theory and Stata examples IAPRI-MSU Technical Training Intro to Applied Econometrics: Basic theory and Stata examples Training materials developed and session facilitated by icole M. Mason Assistant Professor, Dept. of Agricultural,

More information

INTRODUCTION TO BASIC LINEAR REGRESSION MODEL

INTRODUCTION TO BASIC LINEAR REGRESSION MODEL INTRODUCTION TO BASIC LINEAR REGRESSION MODEL 13 September 2011 Yogyakarta, Indonesia Cosimo Beverelli (World Trade Organization) 1 LINEAR REGRESSION MODEL In general, regression models estimate the effect

More information

α version (only brief introduction so far)

α version (only brief introduction so far) Econometrics I KS Module 8: Panel Data Econometrics Alexander Ahammer Department of Economics Johannes Kepler University of Linz This version: June 18, 2018 α version (only brief introduction so far) Alexander

More information

CRE METHODS FOR UNBALANCED PANELS Correlated Random Effects Panel Data Models IZA Summer School in Labor Economics May 13-19, 2013 Jeffrey M.

CRE METHODS FOR UNBALANCED PANELS Correlated Random Effects Panel Data Models IZA Summer School in Labor Economics May 13-19, 2013 Jeffrey M. CRE METHODS FOR UNBALANCED PANELS Correlated Random Effects Panel Data Models IZA Summer School in Labor Economics May 13-19, 2013 Jeffrey M. Wooldridge Michigan State University 1. Introduction 2. Linear

More information

EMERGING MARKETS - Lecture 2: Methodology refresher

EMERGING MARKETS - Lecture 2: Methodology refresher EMERGING MARKETS - Lecture 2: Methodology refresher Maria Perrotta April 4, 2013 SITE http://www.hhs.se/site/pages/default.aspx My contact: maria.perrotta@hhs.se Aim of this class There are many different

More information

Economics 308: Econometrics Professor Moody

Economics 308: Econometrics Professor Moody Economics 308: Econometrics Professor Moody References on reserve: Text Moody, Basic Econometrics with Stata (BES) Pindyck and Rubinfeld, Econometric Models and Economic Forecasts (PR) Wooldridge, Jeffrey

More information

Non-linear panel data modeling

Non-linear panel data modeling Non-linear panel data modeling Laura Magazzini University of Verona laura.magazzini@univr.it http://dse.univr.it/magazzini May 2010 Laura Magazzini (@univr.it) Non-linear panel data modeling May 2010 1

More information

Lecture 8 Panel Data

Lecture 8 Panel Data Lecture 8 Panel Data Economics 8379 George Washington University Instructor: Prof. Ben Williams Introduction This lecture will discuss some common panel data methods and problems. Random effects vs. fixed

More information

Simultaneous Equations with Error Components. Mike Bronner Marko Ledic Anja Breitwieser

Simultaneous Equations with Error Components. Mike Bronner Marko Ledic Anja Breitwieser Simultaneous Equations with Error Components Mike Bronner Marko Ledic Anja Breitwieser PRESENTATION OUTLINE Part I: - Simultaneous equation models: overview - Empirical example Part II: - Hausman and Taylor

More information

ECONOMETFUCS FIELD EXAM Michigan State University May 11, 2007

ECONOMETFUCS FIELD EXAM Michigan State University May 11, 2007 ECONOMETFUCS FIELD EXAM Michigan State University May 11, 2007 Instructions: Answer all four (4) questions. Point totals for each question are given in parenthesis; there are 100 points possible. Within

More information

Applied Economics. Panel Data. Department of Economics Universidad Carlos III de Madrid

Applied Economics. Panel Data. Department of Economics Universidad Carlos III de Madrid Applied Economics Panel Data Department of Economics Universidad Carlos III de Madrid See also Wooldridge (chapter 13), and Stock and Watson (chapter 10) 1 / 38 Panel Data vs Repeated Cross-sections In

More information

Ninth ARTNeT Capacity Building Workshop for Trade Research "Trade Flows and Trade Policy Analysis"

Ninth ARTNeT Capacity Building Workshop for Trade Research Trade Flows and Trade Policy Analysis Ninth ARTNeT Capacity Building Workshop for Trade Research "Trade Flows and Trade Policy Analysis" June 2013 Bangkok, Thailand Cosimo Beverelli and Rainer Lanz (World Trade Organization) 1 Selected econometric

More information

Repeated observations on the same cross-section of individual units. Important advantages relative to pure cross-section data

Repeated observations on the same cross-section of individual units. Important advantages relative to pure cross-section data Panel data Repeated observations on the same cross-section of individual units. Important advantages relative to pure cross-section data - possible to control for some unobserved heterogeneity - possible

More information

Jeffrey M. Wooldridge Michigan State University

Jeffrey M. Wooldridge Michigan State University Fractional Response Models with Endogenous Explanatory Variables and Heterogeneity Jeffrey M. Wooldridge Michigan State University 1. Introduction 2. Fractional Probit with Heteroskedasticity 3. Fractional

More information

Econ 582 Fixed Effects Estimation of Panel Data

Econ 582 Fixed Effects Estimation of Panel Data Econ 582 Fixed Effects Estimation of Panel Data Eric Zivot May 28, 2012 Panel Data Framework = x 0 β + = 1 (individuals); =1 (time periods) y 1 = X β ( ) ( 1) + ε Main question: Is x uncorrelated with?

More information

Panel Data: Fixed and Random Effects

Panel Data: Fixed and Random Effects Short Guides to Microeconometrics Fall 2016 Kurt Schmidheiny Unversität Basel Panel Data: Fixed and Random Effects 1 Introduction In panel data, individuals (persons, firms, cities, ) are observed at several

More information

Introduction to Panel Data Analysis

Introduction to Panel Data Analysis Introduction to Panel Data Analysis Youngki Shin Department of Economics Email: yshin29@uwo.ca Statistics and Data Series at Western November 21, 2012 1 / 40 Motivation More observations mean more information.

More information

Linear Panel Data Models

Linear Panel Data Models Linear Panel Data Models Michael R. Roberts Department of Finance The Wharton School University of Pennsylvania October 5, 2009 Michael R. Roberts Linear Panel Data Models 1/56 Example First Difference

More information

Econometrics of Panel Data

Econometrics of Panel Data Econometrics of Panel Data Jakub Mućk Meeting # 1 Jakub Mućk Econometrics of Panel Data Meeting # 1 1 / 31 Outline 1 Course outline 2 Panel data Advantages of Panel Data Limitations of Panel Data 3 Pooled

More information

Advanced Econometrics

Advanced Econometrics Based on the textbook by Verbeek: A Guide to Modern Econometrics Robert M. Kunst robert.kunst@univie.ac.at University of Vienna and Institute for Advanced Studies Vienna May 16, 2013 Outline Univariate

More information

Topic 10: Panel Data Analysis

Topic 10: Panel Data Analysis Topic 10: Panel Data Analysis Advanced Econometrics (I) Dong Chen School of Economics, Peking University 1 Introduction Panel data combine the features of cross section data time series. Usually a panel

More information

Econometrics of Panel Data

Econometrics of Panel Data Econometrics of Panel Data Jakub Mućk Meeting # 6 Jakub Mućk Econometrics of Panel Data Meeting # 6 1 / 36 Outline 1 The First-Difference (FD) estimator 2 Dynamic panel data models 3 The Anderson and Hsiao

More information

ECONOMETRICS HONOR S EXAM REVIEW SESSION

ECONOMETRICS HONOR S EXAM REVIEW SESSION ECONOMETRICS HONOR S EXAM REVIEW SESSION Eunice Han ehan@fas.harvard.edu March 26 th, 2013 Harvard University Information 2 Exam: April 3 rd 3-6pm @ Emerson 105 Bring a calculator and extra pens. Notes

More information

What s New in Econometrics? Lecture 14 Quantile Methods

What s New in Econometrics? Lecture 14 Quantile Methods What s New in Econometrics? Lecture 14 Quantile Methods Jeff Wooldridge NBER Summer Institute, 2007 1. Reminders About Means, Medians, and Quantiles 2. Some Useful Asymptotic Results 3. Quantile Regression

More information

New Developments in Econometrics Lecture 11: Difference-in-Differences Estimation

New Developments in Econometrics Lecture 11: Difference-in-Differences Estimation New Developments in Econometrics Lecture 11: Difference-in-Differences Estimation Jeff Wooldridge Cemmap Lectures, UCL, June 2009 1. The Basic Methodology 2. How Should We View Uncertainty in DD Settings?

More information

Short T Panels - Review

Short T Panels - Review Short T Panels - Review We have looked at methods for estimating parameters on time-varying explanatory variables consistently in panels with many cross-section observation units but a small number of

More information

Recent Advances in the Field of Trade Theory and Policy Analysis Using Micro-Level Data

Recent Advances in the Field of Trade Theory and Policy Analysis Using Micro-Level Data Recent Advances in the Field of Trade Theory and Policy Analysis Using Micro-Level Data July 2012 Bangkok, Thailand Cosimo Beverelli (World Trade Organization) 1 Content a) Classical regression model b)

More information

Dynamic Panel Data Models

Dynamic Panel Data Models June 23, 2010 Contents Motivation 1 Motivation 2 Basic set-up Problem Solution 3 4 5 Literature Motivation Many economic issues are dynamic by nature and use the panel data structure to understand adjustment.

More information

Econ 1123: Section 5. Review. Internal Validity. Panel Data. Clustered SE. STATA help for Problem Set 5. Econ 1123: Section 5.

Econ 1123: Section 5. Review. Internal Validity. Panel Data. Clustered SE. STATA help for Problem Set 5. Econ 1123: Section 5. Outline 1 Elena Llaudet 2 3 4 October 6, 2010 5 based on Common Mistakes on P. Set 4 lnftmpop = -.72-2.84 higdppc -.25 lackpf +.65 higdppc * lackpf 2 lnftmpop = β 0 + β 1 higdppc + β 2 lackpf + β 3 lackpf

More information

FNCE 926 Empirical Methods in CF

FNCE 926 Empirical Methods in CF FNCE 926 Empirical Methods in CF Lecture 4 Panel Data Professor Todd Gormley Announcements Exercise #2 is due next week q You can download it from Canvas q Largely just has you manipulate panel data Please

More information

Econometrics. Week 4. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague

Econometrics. Week 4. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Econometrics Week 4 Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Fall 2012 1 / 23 Recommended Reading For the today Serial correlation and heteroskedasticity in

More information

ADVANCED ECONOMETRICS I. Course Description. Contents - Theory 18/10/2017. Theory (1/3)

ADVANCED ECONOMETRICS I. Course Description. Contents - Theory 18/10/2017. Theory (1/3) ADVANCED ECONOMETRICS I Theory (1/3) Instructor: Joaquim J. S. Ramalho E.mail: jjsro@iscte-iul.pt Personal Website: http://home.iscte-iul.pt/~jjsro Office: D5.10 Course Website: http://home.iscte-iul.pt/~jjsro/advancedeconometricsi.htm

More information

Fixed Effects Models for Panel Data. December 1, 2014

Fixed Effects Models for Panel Data. December 1, 2014 Fixed Effects Models for Panel Data December 1, 2014 Notation Use the same setup as before, with the linear model Y it = X it β + c i + ɛ it (1) where X it is a 1 K + 1 vector of independent variables.

More information

Specification testing in panel data models estimated by fixed effects with instrumental variables

Specification testing in panel data models estimated by fixed effects with instrumental variables Specification testing in panel data models estimated by fixed effects wh instrumental variables Carrie Falls Department of Economics Michigan State Universy Abstract I show that a handful of the regressions

More information

Panel Data: Linear Models

Panel Data: Linear Models Panel Data: Linear Models Laura Magazzini University of Verona laura.magazzini@univr.it http://dse.univr.it/magazzini Laura Magazzini (@univr.it) Panel Data: Linear Models 1 / 45 Introduction Outline What

More information

Capital humain, développement et migrations: approche macroéconomique (Empirical Analysis - Static Part)

Capital humain, développement et migrations: approche macroéconomique (Empirical Analysis - Static Part) Séminaire d Analyse Economique III (LECON2486) Capital humain, développement et migrations: approche macroéconomique (Empirical Analysis - Static Part) Frédéric Docquier & Sara Salomone IRES UClouvain

More information

New York University Department of Economics. Applied Statistics and Econometrics G Spring 2013

New York University Department of Economics. Applied Statistics and Econometrics G Spring 2013 New York University Department of Economics Applied Statistics and Econometrics G31.1102 Spring 2013 Text: Econometric Analysis, 7 h Edition, by William Greene (Prentice Hall) Optional: A Guide to Modern

More information

New Developments in Econometrics Lecture 16: Quantile Estimation

New Developments in Econometrics Lecture 16: Quantile Estimation New Developments in Econometrics Lecture 16: Quantile Estimation Jeff Wooldridge Cemmap Lectures, UCL, June 2009 1. Review of Means, Medians, and Quantiles 2. Some Useful Asymptotic Results 3. Quantile

More information

Panel Data Models. Chapter 5. Financial Econometrics. Michael Hauser WS17/18 1 / 63

Panel Data Models. Chapter 5. Financial Econometrics. Michael Hauser WS17/18 1 / 63 1 / 63 Panel Data Models Chapter 5 Financial Econometrics Michael Hauser WS17/18 2 / 63 Content Data structures: Times series, cross sectional, panel data, pooled data Static linear panel data models:

More information

A Course in Applied Econometrics Lecture 7: Cluster Sampling. Jeff Wooldridge IRP Lectures, UW Madison, August 2008

A Course in Applied Econometrics Lecture 7: Cluster Sampling. Jeff Wooldridge IRP Lectures, UW Madison, August 2008 A Course in Applied Econometrics Lecture 7: Cluster Sampling Jeff Wooldridge IRP Lectures, UW Madison, August 2008 1. The Linear Model with Cluster Effects 2. Estimation with a Small Number of roups and

More information

Specification Tests in Unbalanced Panels with Endogeneity.

Specification Tests in Unbalanced Panels with Endogeneity. Specification Tests in Unbalanced Panels with Endogeneity. Riju Joshi Jeffrey M. Wooldridge June 22, 2017 Abstract This paper develops specification tests for unbalanced panels with endogenous explanatory

More information

Lecture 4: Linear panel models

Lecture 4: Linear panel models Lecture 4: Linear panel models Luc Behaghel PSE February 2009 Luc Behaghel (PSE) Lecture 4 February 2009 1 / 47 Introduction Panel = repeated observations of the same individuals (e.g., rms, workers, countries)

More information

Econometrics Honor s Exam Review Session. Spring 2012 Eunice Han

Econometrics Honor s Exam Review Session. Spring 2012 Eunice Han Econometrics Honor s Exam Review Session Spring 2012 Eunice Han Topics 1. OLS The Assumptions Omitted Variable Bias Conditional Mean Independence Hypothesis Testing and Confidence Intervals Homoskedasticity

More information

ECON 4551 Econometrics II Memorial University of Newfoundland. Panel Data Models. Adapted from Vera Tabakova s notes

ECON 4551 Econometrics II Memorial University of Newfoundland. Panel Data Models. Adapted from Vera Tabakova s notes ECON 4551 Econometrics II Memorial University of Newfoundland Panel Data Models Adapted from Vera Tabakova s notes 15.1 Grunfeld s Investment Data 15.2 Sets of Regression Equations 15.3 Seemingly Unrelated

More information

1 Motivation for Instrumental Variable (IV) Regression

1 Motivation for Instrumental Variable (IV) Regression ECON 370: IV & 2SLS 1 Instrumental Variables Estimation and Two Stage Least Squares Econometric Methods, ECON 370 Let s get back to the thiking in terms of cross sectional (or pooled cross sectional) data

More information

Estimating Panel Data Models in the Presence of Endogeneity and Selection

Estimating Panel Data Models in the Presence of Endogeneity and Selection ================ Estimating Panel Data Models in the Presence of Endogeneity and Selection Anastasia Semykina Department of Economics Florida State University Tallahassee, FL 32306-2180 asemykina@fsu.edu

More information

Difference-in-Differences Estimation

Difference-in-Differences Estimation Difference-in-Differences Estimation Jeff Wooldridge Michigan State University Programme Evaluation for Policy Analysis Institute for Fiscal Studies June 2012 1. The Basic Methodology 2. How Should We

More information

1 The basics of panel data

1 The basics of panel data Introductory Applied Econometrics EEP/IAS 118 Spring 2015 Related materials: Steven Buck Notes to accompany fixed effects material 4-16-14 ˆ Wooldridge 5e, Ch. 1.3: The Structure of Economic Data ˆ Wooldridge

More information

1. Overview of the Basic Model

1. Overview of the Basic Model IRP Lectures Madison, WI, August 2008 Lectures 3 & 4, Monday, August 4, 11:15-12:30 and 1:30-2:30 Linear Panel Data Models These notes cover some recent topics in linear panel data models. They begin with

More information

Week 2: Pooling Cross Section across Time (Wooldridge Chapter 13)

Week 2: Pooling Cross Section across Time (Wooldridge Chapter 13) Week 2: Pooling Cross Section across Time (Wooldridge Chapter 13) Tsun-Feng Chiang* *School of Economics, Henan University, Kaifeng, China March 3, 2014 1 / 30 Pooling Cross Sections across Time Pooled

More information

Christopher Dougherty London School of Economics and Political Science

Christopher Dougherty London School of Economics and Political Science Introduction to Econometrics FIFTH EDITION Christopher Dougherty London School of Economics and Political Science OXFORD UNIVERSITY PRESS Contents INTRODU CTION 1 Why study econometrics? 1 Aim of this

More information

Controlling for Time Invariant Heterogeneity

Controlling for Time Invariant Heterogeneity Controlling for Time Invariant Heterogeneity Yona Rubinstein July 2016 Yona Rubinstein (LSE) Controlling for Time Invariant Heterogeneity 07/16 1 / 19 Observables and Unobservables Confounding Factors

More information

4 Instrumental Variables Single endogenous variable One continuous instrument. 2

4 Instrumental Variables Single endogenous variable One continuous instrument. 2 Econ 495 - Econometric Review 1 Contents 4 Instrumental Variables 2 4.1 Single endogenous variable One continuous instrument. 2 4.2 Single endogenous variable more than one continuous instrument..........................

More information

Fortin Econ Econometric Review 1. 1 Panel Data Methods Fixed Effects Dummy Variables Regression... 7

Fortin Econ Econometric Review 1. 1 Panel Data Methods Fixed Effects Dummy Variables Regression... 7 Fortin Econ 495 - Econometric Review 1 Contents 1 Panel Data Methods 2 1.1 Fixed Effects......................... 2 1.1.1 Dummy Variables Regression............ 7 1.1.2 First Differencing Methods.............

More information

Empirical Application of Panel Data Regression

Empirical Application of Panel Data Regression Empirical Application of Panel Data Regression 1. We use Fatality data, and we are interested in whether rising beer tax rate can help lower traffic death. So the dependent variable is traffic death, while

More information

Estimation of Panel Data Models with Binary Indicators when Treatment Effects are not Constant over Time. Audrey Laporte a,*, Frank Windmeijer b

Estimation of Panel Data Models with Binary Indicators when Treatment Effects are not Constant over Time. Audrey Laporte a,*, Frank Windmeijer b Estimation of Panel ata Models wh Binary Indicators when Treatment Effects are not Constant over Time Audrey Laporte a,*, Frank Windmeijer b a epartment of Health Policy, Management and Evaluation, Universy

More information

Multiple Linear Regression CIVL 7012/8012

Multiple Linear Regression CIVL 7012/8012 Multiple Linear Regression CIVL 7012/8012 2 Multiple Regression Analysis (MLR) Allows us to explicitly control for many factors those simultaneously affect the dependent variable This is important for

More information

A Course in Applied Econometrics Lecture 18: Missing Data. Jeff Wooldridge IRP Lectures, UW Madison, August Linear model with IVs: y i x i u i,

A Course in Applied Econometrics Lecture 18: Missing Data. Jeff Wooldridge IRP Lectures, UW Madison, August Linear model with IVs: y i x i u i, A Course in Applied Econometrics Lecture 18: Missing Data Jeff Wooldridge IRP Lectures, UW Madison, August 2008 1. When Can Missing Data be Ignored? 2. Inverse Probability Weighting 3. Imputation 4. Heckman-Type

More information

E c o n o m e t r i c s

E c o n o m e t r i c s H:/Lehre/Econometrics Master/Lecture slides/chap 0.tex (October 7, 2015) E c o n o m e t r i c s This course 1 People Instructor: Professor Dr. Roman Liesenfeld SSC-Gebäude, Universitätsstr. 22, Room 4.309

More information

G. S. Maddala Kajal Lahiri. WILEY A John Wiley and Sons, Ltd., Publication

G. S. Maddala Kajal Lahiri. WILEY A John Wiley and Sons, Ltd., Publication G. S. Maddala Kajal Lahiri WILEY A John Wiley and Sons, Ltd., Publication TEMT Foreword Preface to the Fourth Edition xvii xix Part I Introduction and the Linear Regression Model 1 CHAPTER 1 What is Econometrics?

More information

Beyond the Target Customer: Social Effects of CRM Campaigns

Beyond the Target Customer: Social Effects of CRM Campaigns Beyond the Target Customer: Social Effects of CRM Campaigns Eva Ascarza, Peter Ebbes, Oded Netzer, Matthew Danielson Link to article: http://journals.ama.org/doi/abs/10.1509/jmr.15.0442 WEB APPENDICES

More information

When Should We Use Linear Fixed Effects Regression Models for Causal Inference with Longitudinal Data?

When Should We Use Linear Fixed Effects Regression Models for Causal Inference with Longitudinal Data? When Should We Use Linear Fixed Effects Regression Models for Causal Inference with Longitudinal Data? Kosuke Imai Princeton University Asian Political Methodology Conference University of Sydney Joint

More information

Applied Econometrics. Lecture 3: Introduction to Linear Panel Data Models

Applied Econometrics. Lecture 3: Introduction to Linear Panel Data Models Applied Econometrics Lecture 3: Introduction to Linear Panel Data Models Måns Söderbom 4 September 2009 Department of Economics, Universy of Gothenburg. Email: mans.soderbom@economics.gu.se. Web: www.economics.gu.se/soderbom,

More information

Econometrics. Week 8. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague

Econometrics. Week 8. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Econometrics Week 8 Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Fall 2012 1 / 25 Recommended Reading For the today Instrumental Variables Estimation and Two Stage

More information

Handout 12. Endogeneity & Simultaneous Equation Models

Handout 12. Endogeneity & Simultaneous Equation Models Handout 12. Endogeneity & Simultaneous Equation Models In which you learn about another potential source of endogeneity caused by the simultaneous determination of economic variables, and learn how to

More information

Introduction to Econometrics. Regression with Panel Data

Introduction to Econometrics. Regression with Panel Data Introduction to Econometrics The statistical analysis of economic (and related) data STATS301 Regression with Panel Data Titulaire: Christopher Bruffaerts Assistant: Lorenzo Ricci 1 Regression with Panel

More information

Panel Data Seminar. Discrete Response Models. Crest-Insee. 11 April 2008

Panel Data Seminar. Discrete Response Models. Crest-Insee. 11 April 2008 Panel Data Seminar Discrete Response Models Romain Aeberhardt Laurent Davezies Crest-Insee 11 April 2008 Aeberhardt and Davezies (Crest-Insee) Panel Data Seminar 11 April 2008 1 / 29 Contents Overview

More information

6/10/15. Session 2: The two- way error component model. Session 2: The two- way error component model. Two- way error component regression model.

6/10/15. Session 2: The two- way error component model. Session 2: The two- way error component model. Two- way error component regression model. Session 2: The two- way error component model! First: a look back!! general panel data linear model Individuals (country, group) time! so far, one- way error component models! pooled model! fixed effects

More information

Longitudinal Data Analysis. RatSWD Nachwuchsworkshop Vorlesung von Josef Brüderl 25. August, 2009

Longitudinal Data Analysis. RatSWD Nachwuchsworkshop Vorlesung von Josef Brüderl 25. August, 2009 Longitudinal Data Analysis RatSWD Nachwuchsworkshop Vorlesung von Josef Brüderl 25. August, 2009 Longitudinal Data Analysis Traditional definition Statistical methods for analyzing data with a time dimension

More information

Panel Data Exercises Manuel Arellano. Using panel data, a researcher considers the estimation of the following system:

Panel Data Exercises Manuel Arellano. Using panel data, a researcher considers the estimation of the following system: Panel Data Exercises Manuel Arellano Exercise 1 Using panel data, a researcher considers the estimation of the following system: y 1t = α 1 + βx 1t + v 1t. (t =1,..., T ) y Nt = α N + βx Nt + v Nt where

More information

Review of Panel Data Model Types Next Steps. Panel GLMs. Department of Political Science and Government Aarhus University.

Review of Panel Data Model Types Next Steps. Panel GLMs. Department of Political Science and Government Aarhus University. Panel GLMs Department of Political Science and Government Aarhus University May 12, 2015 1 Review of Panel Data 2 Model Types 3 Review and Looking Forward 1 Review of Panel Data 2 Model Types 3 Review

More information

Introduction to Econometrics

Introduction to Econometrics Introduction to Econometrics STAT-S-301 Panel Data (2016/2017) Lecturer: Yves Dominicy Teaching Assistant: Elise Petit 1 Regression with Panel Data A panel dataset contains observations on multiple entities

More information

4 Instrumental Variables Single endogenous variable One continuous instrument. 2

4 Instrumental Variables Single endogenous variable One continuous instrument. 2 Econ 495 - Econometric Review 1 Contents 4 Instrumental Variables 2 4.1 Single endogenous variable One continuous instrument. 2 4.2 Single endogenous variable more than one continuous instrument..........................

More information

Introduction to Regression Models for Panel Data Analysis. Indiana University Workshop in Methods February 13, Professor Patricia A.

Introduction to Regression Models for Panel Data Analysis. Indiana University Workshop in Methods February 13, Professor Patricia A. Introduction to Regression Models for Panel Data Analysis Indiana Universy Workshop in Methods February 13, 2015 Professor Patricia A. McManus Panel Data Analysis February 2015 What are Panel Data? Panel

More information

Multiple Equation GMM with Common Coefficients: Panel Data

Multiple Equation GMM with Common Coefficients: Panel Data Multiple Equation GMM with Common Coefficients: Panel Data Eric Zivot Winter 2013 Multi-equation GMM with common coefficients Example (panel wage equation) 69 = + 69 + + 69 + 1 80 = + 80 + + 80 + 2 Note:

More information

CORRELATED RANDOM EFFECTS MODELS WITH UNBALANCED PANELS

CORRELATED RANDOM EFFECTS MODELS WITH UNBALANCED PANELS CORRELATED RANDOM EFFECTS MODELS WITH UNBALANCED PANELS Jeffrey M. Wooldridge Department of Economics Michigan State University East Lansing, MI 48824-1038 wooldri1@msu.edu July 2009 I presented an earlier

More information

Applied Health Economics (for B.Sc.)

Applied Health Economics (for B.Sc.) Applied Health Economics (for B.Sc.) Helmut Farbmacher Department of Economics University of Mannheim Autumn Semester 2017 Outlook 1 Linear models (OLS, Omitted variables, 2SLS) 2 Limited and qualitative

More information

10 Panel Data. Andrius Buteikis,

10 Panel Data. Andrius Buteikis, 10 Panel Data Andrius Buteikis, andrius.buteikis@mif.vu.lt http://web.vu.lt/mif/a.buteikis/ Introduction Panel data combines cross-sectional and time series data: the same individuals (persons, firms,

More information

Lecture: Simultaneous Equation Model (Wooldridge s Book Chapter 16)

Lecture: Simultaneous Equation Model (Wooldridge s Book Chapter 16) Lecture: Simultaneous Equation Model (Wooldridge s Book Chapter 16) 1 2 Model Consider a system of two regressions y 1 = β 1 y 2 + u 1 (1) y 2 = β 2 y 1 + u 2 (2) This is a simultaneous equation model

More information

A Practical Test for Strict Exogeneity in Linear Panel Data Models with Fixed Effects

A Practical Test for Strict Exogeneity in Linear Panel Data Models with Fixed Effects A Practical Test for Strict Exogeneity in Linear Panel Data Models with Fixed Effects Liangjun Su, Yonghui Zhang,JieWei School of Economics, Singapore Management University School of Economics, Renmin

More information

Applied Econometrics Lecture 1

Applied Econometrics Lecture 1 Lecture 1 1 1 Università di Urbino Università di Urbino PhD Programme in Global Studies Spring 2018 Outline of this module Beyond OLS (very brief sketch) Regression and causality: sources of endogeneity

More information

1 Introduction to Generalized Least Squares

1 Introduction to Generalized Least Squares ECONOMICS 7344, Spring 2017 Bent E. Sørensen April 12, 2017 1 Introduction to Generalized Least Squares Consider the model Y = Xβ + ɛ, where the N K matrix of regressors X is fixed, independent of the

More information

Problem Set 10: Panel Data

Problem Set 10: Panel Data Problem Set 10: Panel Data 1. Read in the data set, e11panel1.dta from the course website. This contains data on a sample or 1252 men and women who were asked about their hourly wage in two years, 2005

More information

Applied Econometrics (MSc.) Lecture 3 Instrumental Variables

Applied Econometrics (MSc.) Lecture 3 Instrumental Variables Applied Econometrics (MSc.) Lecture 3 Instrumental Variables Estimation - Theory Department of Economics University of Gothenburg December 4, 2014 1/28 Why IV estimation? So far, in OLS, we assumed independence.

More information

A Course in Applied Econometrics Lecture 4: Linear Panel Data Models, II. Jeff Wooldridge IRP Lectures, UW Madison, August 2008

A Course in Applied Econometrics Lecture 4: Linear Panel Data Models, II. Jeff Wooldridge IRP Lectures, UW Madison, August 2008 A Course in Applied Econometrics Lecture 4: Linear Panel Data Models, II Jeff Wooldridge IRP Lectures, UW Madison, August 2008 5. Estimating Production Functions Using Proxy Variables 6. Pseudo Panels

More information

Lecture 4: Multivariate Regression, Part 2

Lecture 4: Multivariate Regression, Part 2 Lecture 4: Multivariate Regression, Part 2 Gauss-Markov Assumptions 1) Linear in Parameters: Y X X X i 0 1 1 2 2 k k 2) Random Sampling: we have a random sample from the population that follows the above

More information

Simultaneous Equation Models Learning Objectives Introduction Introduction (2) Introduction (3) Solving the Model structural equations

Simultaneous Equation Models Learning Objectives Introduction Introduction (2) Introduction (3) Solving the Model structural equations Simultaneous Equation Models. Introduction: basic definitions 2. Consequences of ignoring simultaneity 3. The identification problem 4. Estimation of simultaneous equation models 5. Example: IS LM model

More information

Econometrics 2, Class 1

Econometrics 2, Class 1 Econometrics 2, Class Problem Set #2 September 9, 25 Remember! Send an email to let me know that you are following these classes: paul.sharp@econ.ku.dk That way I can contact you e.g. if I need to cancel

More information

Longitudinal Data Analysis Using Stata Paul D. Allison, Ph.D. Upcoming Seminar: May 18-19, 2017, Chicago, Illinois

Longitudinal Data Analysis Using Stata Paul D. Allison, Ph.D. Upcoming Seminar: May 18-19, 2017, Chicago, Illinois Longitudinal Data Analysis Using Stata Paul D. Allison, Ph.D. Upcoming Seminar: May 18-19, 217, Chicago, Illinois Outline 1. Opportunities and challenges of panel data. a. Data requirements b. Control

More information

ERSA Training Workshop Lecture 5: Estimation of Binary Choice Models with Panel Data

ERSA Training Workshop Lecture 5: Estimation of Binary Choice Models with Panel Data ERSA Training Workshop Lecture 5: Estimation of Binary Choice Models with Panel Data Måns Söderbom Friday 16 January 2009 1 Introduction The methods discussed thus far in the course are well suited for

More information

Dynamic Panels. Chapter Introduction Autoregressive Model

Dynamic Panels. Chapter Introduction Autoregressive Model Chapter 11 Dynamic Panels This chapter covers the econometrics methods to estimate dynamic panel data models, and presents examples in Stata to illustrate the use of these procedures. The topics in this

More information

Lecture 4: Multivariate Regression, Part 2

Lecture 4: Multivariate Regression, Part 2 Lecture 4: Multivariate Regression, Part 2 Gauss-Markov Assumptions 1) Linear in Parameters: Y X X X i 0 1 1 2 2 k k 2) Random Sampling: we have a random sample from the population that follows the above

More information

-redprob- A Stata program for the Heckman estimator of the random effects dynamic probit model

-redprob- A Stata program for the Heckman estimator of the random effects dynamic probit model -redprob- A Stata program for the Heckman estimator of the random effects dynamic probit model Mark B. Stewart University of Warwick January 2006 1 The model The latent equation for the random effects

More information

Econometrics - 30C00200

Econometrics - 30C00200 Econometrics - 30C00200 Lecture 11: Heteroskedasticity Antti Saastamoinen VATT Institute for Economic Research Fall 2015 30C00200 Lecture 11: Heteroskedasticity 12.10.2015 Aalto University School of Business

More information