ECON Introductory Econometrics. Seminar 4. Stock and Watson Chapter 8

Size: px
Start display at page:

Download "ECON Introductory Econometrics. Seminar 4. Stock and Watson Chapter 8"

Transcription

1 ECON Introductory Econometrics Seminar 4 Stock and Watson Chapter 8

2 empirical exercise E8.2: Data 2 In this exercise we use the data set CPS12.dta Each month the Bureau of Labor Statistics in the U.S. Department of Labor conducts the Current Population Survey (CPS), which provides data on labor force characteristics of the population, including the level of employment, unemployment, and earnings. Approximately 65,000 randomly selected U.S. households are surveyed each month. The file CPS12.dta contains the data for 2012 (from the March 2013 survey). These data are for full-time workers, defined as workers employed more than 35 hours per week for at least 48 weeks in the previous year. Data are provided for workers whose highest educational achievement is (1) a high school diploma, and (2) a bachelor s degree.

3 empirical exercise E8.2: Data 3 Series in Data Set: FEMALE: 1 if female; 0 if male YEAR: Year AHE : Average Hourly Earnings BACHELOR: 1 if worker has a bachelor s degree; 0 if worker has a high school degree

4 empirical exercise E8.2: Data 4 Tuesday March 3 14:58: Page 1 (R) / / / / / / / / / / / / Statistics/Data Analysis 1. sum Variable Obs Mean Std. Dev. Min Max year ahe bachelor female age

5 Tuesday March 3 15:01: Page 1 empirical exercise E8.2 part a) (R) / / / / / / / / / / / / Statistics/Data Analysis 5 1. regress ahe age female bachelor, robust Linear regression Number of obs = 7440 F( 3, 7436) = Prob > F = R-squared = Root MSE = Robust ahe Coef. Std. Err. t P> t [95% Conf. Interval] age female bachelor _cons If age increases from 25 to 26, earnings are expected to increase by $0.51 per hour. If age increases from 33 to 34, earnings are expected to increase by $0.51 per hour.

6 empirical exercise E8.2 part b) (R) 6 / / / / / / / / / / / / Statistics/Data Analysis 1. gen lnahe=ln(ahe) 2. regress lnahe age female bachelor, robust Linear regression Number of obs = 7440 F( 3, 7436) = Prob > F = R-squared = Root MSE = Robust lnahe Coef. Std. Err. t P> t [95% Conf. Interval] age female bachelor _cons If age increases from 25 to 26, earnings are expected to increase by 2.55%. If age increases from 33 to 34, earnings are expected to increase by 2.55%. These values, in percentage terms, are the same because the regression is a linear function relating ln(ahe) and age.

7 Tuesday March 3 15:11: Page 1 empirical exercise E8.2 part c) (R) / / / / / / / / / / / / Statistics/Data Analysis 7 1. gen lnage=ln(age) 2. regress lnahe lnage female bachelor, robust Linear regression Number of obs = 7440 F( 3, 7436) = Prob > F = R-squared = Root MSE = Robust lnahe Coef. Std. Err. t P> t [95% Conf. Interval] lnage female bachelor _cons ln(ahe) = 0.75 (ln(26) ln(25)) = so if age increases from 25 to 26, earnings is expected to increase by 2.9%. ln(ahe) = 0.75 (ln(34) ln(33)) = so if age increases from 25 to 26, earnings is expected to increase by 2.2%.

8 empirical exercise E8.2 part d) 1. gen age2=age^2 2. regress lnahe age age2 female bachelor, robust (R) / / / / / / / / / / / / Statistics/Data Analysis 8 Linear regression Number of obs = 7440 F( 4, 7435) = Prob > F = R-squared = Root MSE = Robust lnahe Coef. Std. Err. t P> t [95% Conf. Interval] age age female bachelor _cons ln(ahe) = ( ) ( ) = so if age increases from 25 to 26, earnings is expected to increase by 3.7%. ln(ahe) = ( ) ( ) = so if age increases from 25 to 26, earnings is expected to increase by 1.7%.

9 empirical exercise E8.2 part e) 9 The regressions differ in their choice of one of the regressors. They can be compared on the basis of the adjusted R 2 Part b): display e(r2_a) Part c): display e(r2_a) Regression in part c) has a marginally higher adjusted R 2, but the differences are very small.

10 empirical exercise E8.2 part f) 10 The regression in (d) adds the variable age 2 to regression (b). The coefficient on age 2 is not statistically significant at the 5% level (t = 1.72<1.96) and the estimated coefficient is very close to zero. This suggests that (b) is preferred to (d) (note: conclusion would be different at 10% level)

11 empirical exercise E8.2 part g) 11 The regressions differ in their choice of the regressors (ln(age) in (c) and age and age 2 in (d)). They can be compared on the basis of the adjusted R 2. Part c): display e(r2_a) Part d) display e(r2_a) The regression in (d) has a (marginally) higher adjusted R 2, so it is slightly preferred.

12 empirical exercise E8.2 part h) ln(ahe) age part b) log-linear part d) log-quadratic part c) log-log The regression functions for women with a college degree will look just like these, but they will be shifted by the amount of the coefficient on the binary regressors female and bachelor.

13 Tuesday March 3 16:14: Page 1 empirical exercise E8.2 part i) (R) / / / / / / / / / / / / Statistics/Data Analysis gen interaction=female*bachelor 2. regress lnahe age age2 female bachelor interaction, robust Linear regression Number of obs = 7440 F( 5, 7434) = Prob > F = R-squared = Root MSE =.4777 Robust lnahe Coef. Std. Err. t P> t [95% Conf. Interval] age age female bachelor interaction _cons The coefficient on the interaction term shows the difference between men and women in the association between having a bachelor degree and log hourly earnings.

14 empirical exercise E8.2 part i) 14 Predicted values of ln(ahe): Alexis: x = 3.00 Jane: = 2.51 Alexis-Jane= = 0.49 Bob: = 3.15 Jim: = 2.75 Bob-Jim= = 0.4

15 empirical exercise E8.2 part j) Tuesday March 3 16:41: Page 1 15 (R) / / / / / / / / / / / / Statistics/Data Analysis 1. gen age_female=age*female 2. regress lnahe age female age_female bachelor, robust Linear regression Number of obs = 7440 F( 4, 7435) = Prob > F = R-squared = Root MSE = Robust lnahe Coef. Std. Err. t P> t [95% Conf. Interval] age female age_female bachelor _cons

16 empirical exercise E8.2 part k) Tuesday March 3 16:42: Page 1 16 (R) / / / / / / / / / / / / Statistics/Data Analysis 1. gen age_bachelor=age*bachelor 2. regress lnahe age female age_bachelor bachelor, robust Linear regression Number of obs = 7440 F( 4, 7435) = Prob > F = R-squared = Root MSE = Robust lnahe Coef. Std. Err. t P> t [95% Conf. Interval] age female age_bachelor bachelor _cons

17 empirical exercise E8.2 part l) 17 The estimated regressions suggest that earnings increase as workers age from 25 35, the range of age studied in this sample. Can we say more...?

İnsan TUNALI 8 November 2018 Econ 511: Econometrics I. ASSIGNMENT 7 STATA Supplement

İnsan TUNALI 8 November 2018 Econ 511: Econometrics I. ASSIGNMENT 7 STATA Supplement İnsan TUNALI 8 November 2018 Econ 511: Econometrics I ASSIGNMENT 7 STATA Supplement. use "F:\COURSES\GRADS\ECON511\SHARE\wages1.dta", clear. generate =ln(wage). scatter sch Q. Do you see a relationship

More information

Econ 371 Problem Set #4 Answer Sheet. 6.2 This question asks you to use the results from column (1) in the table on page 213.

Econ 371 Problem Set #4 Answer Sheet. 6.2 This question asks you to use the results from column (1) in the table on page 213. Econ 371 Problem Set #4 Answer Sheet 6.2 This question asks you to use the results from column (1) in the table on page 213. a. The first part of this question asks whether workers with college degrees

More information

You created this PDF from an application that is not licensed to print to novapdf printer (http://www.novapdf.com)

You created this PDF from an application that is not licensed to print to novapdf printer (http://www.novapdf.com) Monday October 3 10:11:57 2011 Page 1 (R) / / / / / / / / / / / / Statistics/Data Analysis Education Box and save these files in a local folder. name:

More information

Example 2.3: CEO Salary and Return on Equity. Salary for ROE = 0. Salary for ROE = 30. Example 2.4: Wage and Education

Example 2.3: CEO Salary and Return on Equity. Salary for ROE = 0. Salary for ROE = 30. Example 2.4: Wage and Education 1 Stata Textbook Examples Introductory Econometrics: A Modern Approach by Jeffrey M. Wooldridge (1st & 2d eds.) Chapter 2 - The Simple Regression Model Example 2.3: CEO Salary and Return on Equity summ

More information

ECON Introductory Econometrics Seminar 2, 2015

ECON Introductory Econometrics Seminar 2, 2015 ECON4150 - Introductory Econometrics Seminar 2, 2015 Stock and Watson EE4.1, EE5.2 Stock and Watson EE4.1, EE5.2 ECON4150 - Introductory Econometrics Seminar 2, 2015 1 / 14 Seminar 2 Author: Andrea University

More information

Final Exam - section 1. Thursday, December hours, 30 minutes

Final Exam - section 1. Thursday, December hours, 30 minutes Econometrics, ECON312 San Francisco State University Michael Bar Fall 2013 Final Exam - section 1 Thursday, December 19 1 hours, 30 minutes Name: Instructions 1. This is closed book, closed notes exam.

More information

Labor Force Participation and the Wage Gap Detailed Notes and Code Econometrics 113 Spring 2014

Labor Force Participation and the Wage Gap Detailed Notes and Code Econometrics 113 Spring 2014 Labor Force Participation and the Wage Gap Detailed Notes and Code Econometrics 113 Spring 2014 In class, Lecture 11, we used a new dataset to examine labor force participation and wages across groups.

More information

Labor Market Returns to Two- and Four- Year Colleges. Paper by Kane and Rouse Replicated by Andreas Kraft

Labor Market Returns to Two- and Four- Year Colleges. Paper by Kane and Rouse Replicated by Andreas Kraft Labor Market Returns to Two- and Four- Year Colleges Paper by Kane and Rouse Replicated by Andreas Kraft Theory Estimating the return to two-year colleges Economic Return to credit hours or sheepskin effects

More information

u panel_lecture . sum

u panel_lecture . sum u panel_lecture sum Variable Obs Mean Std Dev Min Max datastre 639 9039644 6369418 900228 926665 year 639 1980 2584012 1976 1984 total_sa 639 9377839 3212313 682 441e+07 tot_fixe 639 5214385 1988422 642

More information

Effect of Education on Wage Earning

Effect of Education on Wage Earning Effect of Education on Wage Earning Group Members: Quentin Talley, Thomas Wang, Geoff Zaski Abstract The scope of this project includes individuals aged 18-65 who finished their education and do not have

More information

Heteroskedasticity. . reg wage black exper educ married tenure

Heteroskedasticity. . reg wage black exper educ married tenure Heteroskedasticity. reg Source SS df MS Number of obs = 2,380 -------------+---------------------------------- F(2, 2377) = 72.38 Model 14.4018246 2 7.20091231 Prob > F = 0.0000 Residual 236.470024 2,377.099482551

More information

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998 Economics 312 Sample Project Report Jeffrey Parker Introduction This project is based on Exercise 2.12 on page 81 of the Hill, Griffiths, and Lim text. It examines how the sale price of houses in Stockton,

More information

[BINARY DEPENDENT VARIABLE ESTIMATION WITH STATA]

[BINARY DEPENDENT VARIABLE ESTIMATION WITH STATA] Tutorial #3 This example uses data in the file 16.09.2011.dta under Tutorial folder. It contains 753 observations from a sample PSID data on the labor force status of married women in the U.S in 1975.

More information

Handout seminar 6, ECON4150

Handout seminar 6, ECON4150 Handout seminar 6, ECON4150 Herman Kruse March 17, 2013 Introduction - list of commands This week, we need a couple of new commands in order to solve all the problems. hist var1 if var2, options - creates

More information

Categorical Outcomes. Statistical Modelling in Stata: Categorical Outcomes. R by C Table: Example. Nominal Outcomes. Mark Lunt.

Categorical Outcomes. Statistical Modelling in Stata: Categorical Outcomes. R by C Table: Example. Nominal Outcomes. Mark Lunt. Categorical Outcomes Statistical Modelling in Stata: Categorical Outcomes Mark Lunt Arthritis Research UK Epidemiology Unit University of Manchester Nominal Ordinal 28/11/2017 R by C Table: Example Categorical,

More information

Econometrics is. The estimation of relationships suggested by economic theory

Econometrics is. The estimation of relationships suggested by economic theory Econometrics is Econometrics is The estimation of relationships suggested by economic theory Econometrics is The estimation of relationships suggested by economic theory The application of mathematical

More information

Example 7.1: Hourly Wage Equation Average wage for women

Example 7.1: Hourly Wage Equation Average wage for women 1 Stata Textbook Examples Introductory Econometrics: A Modern Approach by Jeffrey M. Wooldridge (1st & 2nd eds.) Chapter 7 - Multiple Regression Analysis with Qualitative Information: Binary (or Dummy)

More information

Time series data: Part 2

Time series data: Part 2 Plot of Epsilon over Time -- Case 1 1 Time series data: Part Epsilon - 1 - - - -1 1 51 7 11 1 151 17 Time period Plot of Epsilon over Time -- Case Plot of Epsilon over Time -- Case 3 1 3 1 Epsilon - Epsilon

More information

Your Name (Please print) Did you agree to take the optional portion of the final exam Yes No. Directions

Your Name (Please print) Did you agree to take the optional portion of the final exam Yes No. Directions Your Name (Please print) Did you agree to take the optional portion of the final exam Yes No (Your online answer will be used to verify your response.) Directions There are two parts to the final exam.

More information

Advanced Econometrics

Advanced Econometrics Advanced Econometrics Instructor: Takashi Yamano 11/14/2003 Due: 11/21/2003 Homework 5 (30 points) Sample Answers 1. (16 points) Read Example 13.4 and an AER paper by Meyer, Viscusi, and Durbin (1995).

More information

Problem Set 9 Heteroskedasticty Answers

Problem Set 9 Heteroskedasticty Answers Problem Set 9 Heteroskedasticty Answers /* INVESTIGATION OF HETEROSKEDASTICITY */ First graph data. u hetdat2. gra manuf gdp, s([country].) xlab ylab 300000 manufacturing output (US$ miilio 200000 100000

More information

Dummy variables 9/22/2015. Are wages different across union/nonunion jobs. Treatment Control Y X X i identifies treatment

Dummy variables 9/22/2015. Are wages different across union/nonunion jobs. Treatment Control Y X X i identifies treatment Dummy variables Treatment 22 1 1 Control 3 2 Y Y1 0 1 2 Y X X i identifies treatment 1 1 1 1 1 1 0 0 0 X i =1 if in treatment group X i =0 if in control H o : u n =u u Are wages different across union/nonunion

More information

tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6}

tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6} PS 4 Monday August 16 01:00:42 2010 Page 1 tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6} log: C:\web\PS4log.smcl log type: smcl opened on:

More information

Professor Brad Jones University of Arizona POL 681, SPRING 2004 INTERACTIONS and STATA: Companion To Lecture Notes on Statistical Interactions

Professor Brad Jones University of Arizona POL 681, SPRING 2004 INTERACTIONS and STATA: Companion To Lecture Notes on Statistical Interactions Professor Brad Jones University of Arizona POL 681, SPRING 2004 INTERACTIONS and STATA: Companion To Lecture Notes on Statistical Interactions Preliminaries 1. Basic Regression. reg y x1 Source SS df MS

More information

Impact of Household Income on Poverty Levels

Impact of Household Income on Poverty Levels Impact of Household Income on Poverty Levels ECON 3161 Econometrics, Fall 2015 Prof. Shatakshee Dhongde Group 8 Annie Strothmann Anne Marsh Samuel Brown Abstract: The relationship between poverty and household

More information

Quantitative Techniques Term 2

Quantitative Techniques Term 2 Quantitative Techniques Term 2 Laboratory 7 2 March 2006 Overview The objective of this lab is to: Estimate a cost function for a panel of firms; Calculate returns to scale; Introduce the command cluster

More information

The Multivariate Regression Model

The Multivariate Regression Model The Multivariate Regression Model Example Determinants of College GPA Sample of 4 Freshman Collect data on College GPA (4.0 scale) Look at importance of ACT Consider the following model CGPA ACT i 0 i

More information

1) The Effect of Recent Tax Changes on Taxable Income

1) The Effect of Recent Tax Changes on Taxable Income 1) The Effect of Recent Tax Changes on Taxable Income In the most recent issue of the Journal of Policy Analysis and Management, Bradley Heim published a paper called The Effect of Recent Tax Changes on

More information

Logistic Regression Analysis

Logistic Regression Analysis Revised July 2018 Logistic Regression Analysis This set of notes shows how to use Stata to estimate a logistic regression equation. It assumes that you have set Stata up on your computer (see the Getting

More information

F^3: F tests, Functional Forms and Favorite Coefficient Models

F^3: F tests, Functional Forms and Favorite Coefficient Models F^3: F tests, Functional Forms and Favorite Coefficient Models Favorite coefficient model: otherteams use "nflpricedata Bdta", clear *Favorite coefficient model: otherteams reg rprice pop pop2 rpci wprcnt1

More information

sociology SO5032 Quantitative Research Methods Brendan Halpin, Sociology, University of Limerick Spring 2018 SO5032 Quantitative Research Methods

sociology SO5032 Quantitative Research Methods Brendan Halpin, Sociology, University of Limerick Spring 2018 SO5032 Quantitative Research Methods 1 SO5032 Quantitative Research Methods Brendan Halpin, Sociology, University of Limerick Spring 2018 Lecture 10: Multinomial regression baseline category extension of binary What if we have multiple possible

More information

Model fit assessment via marginal model plots

Model fit assessment via marginal model plots The Stata Journal (2010) 10, Number 2, pp. 215 225 Model fit assessment via marginal model plots Charles Lindsey Texas A & M University Department of Statistics College Station, TX lindseyc@stat.tamu.edu

More information

*1A. Basic Descriptive Statistics sum housereg drive elecbill affidavit witness adddoc income male age literacy educ occup cityyears if control==1

*1A. Basic Descriptive Statistics sum housereg drive elecbill affidavit witness adddoc income male age literacy educ occup cityyears if control==1 *1A Basic Descriptive Statistics sum housereg drive elecbill affidavit witness adddoc income male age literacy educ occup cityyears if control==1 Variable Obs Mean Std Dev Min Max --- housereg 21 2380952

More information

Problem Set 6 ANSWERS

Problem Set 6 ANSWERS Economics 20 Part I. Problem Set 6 ANSWERS Prof. Patricia M. Anderson The first 5 questions are based on the following information: Suppose a researcher is interested in the effect of class attendance

More information

Example 8.1: Log Wage Equation with Heteroscedasticity-Robust Standard Errors

Example 8.1: Log Wage Equation with Heteroscedasticity-Robust Standard Errors 1 Stata Textbook Examples Introductory Econometrics: A Modern Approach by Jeffrey M. Wooldridge (1st & 2nd eds.) Chapter 8 - Heteroskedasticity Example 8.1: Log Wage Equation with Heteroscedasticity-Robust

More information

Assignment #5 Solutions: Chapter 14 Q1.

Assignment #5 Solutions: Chapter 14 Q1. Assignment #5 Solutions: Chapter 14 Q1. a. R 2 is.037 and the adjusted R 2 is.033. The adjusted R 2 value becomes particularly important when there are many independent variables in a multiple regression

More information

Two-stage least squares examples. Angrist: Vietnam Draft Lottery Men, Cohorts. Vietnam era service

Two-stage least squares examples. Angrist: Vietnam Draft Lottery Men, Cohorts. Vietnam era service Two-stage least squares examples Angrist: Vietnam Draft Lottery 1 2 Vietnam era service 1980 Men, 1940-1952 Cohorts Defined as 1964-1975 Estimated 8.7 million served during era 3.4 million were in SE Asia

More information

Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Fall 17

Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Fall 17 Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Fall 17 Answer all questions in the space provided on the exam. Total of 36 points (and worth 22.5% of final grade). Read each question carefully,

More information

An Examination of the Impact of the Texas Methodist Foundation Clergy Development Program. on the United Methodist Church in Texas

An Examination of the Impact of the Texas Methodist Foundation Clergy Development Program. on the United Methodist Church in Texas An Examination of the Impact of the Texas Methodist Foundation Clergy Development Program on the United Methodist Church in Texas The Texas Methodist Foundation completed its first, two-year Clergy Development

More information

An analysis of the relationship between economic development and demographic characteristics in the United States

An analysis of the relationship between economic development and demographic characteristics in the United States University of Central Florida HIM 1990-2015 Open Access An analysis of the relationship between economic development and demographic characteristics in the United States 2011 Chad M. Heyne University of

More information

Technical Documentation for Household Demographics Projection

Technical Documentation for Household Demographics Projection Technical Documentation for Household Demographics Projection REMI Household Forecast is a tool to complement the PI+ demographic model by providing comprehensive forecasts of a variety of household characteristics.

More information

Religion and Volunteerism

Religion and Volunteerism Religion and Volunteerism Abstract This paper uses a standard Tobit to explore the effects of religion on volunteerism. It analyzes cross-sectional data from a representative sample of about 3,000 American

More information

Solutions for Session 5: Linear Models

Solutions for Session 5: Linear Models Solutions for Session 5: Linear Models 30/10/2018. do solution.do. global basedir http://personalpages.manchester.ac.uk/staff/mark.lunt. global datadir $basedir/stats/5_linearmodels1/data. use $datadir/anscombe.

More information

Relation between Income Inequality and Economic Growth

Relation between Income Inequality and Economic Growth Relation between Income Inequality and Economic Growth Ibrahim Alsaffar, Robert Eisenhardt, Hanjin Kim Georgia Institute of Technology ECON 3161: Econometric Analysis Dr. Shatakshee Dhongde Fall 2018 Abstract

More information

EC327: Limited Dependent Variables and Sample Selection Binomial probit: probit

EC327: Limited Dependent Variables and Sample Selection Binomial probit: probit EC327: Limited Dependent Variables and Sample Selection Binomial probit: probit. summarize work age married children education Variable Obs Mean Std. Dev. Min Max work 2000.6715.4697852 0 1 age 2000 36.208

More information

Testing the Solow Growth Theory

Testing the Solow Growth Theory Testing the Solow Growth Theory Dilip Mookherjee Ec320 Lecture 5, Boston University Sept 16, 2014 DM (BU) 320 Lect 5 Sept 16, 2014 1 / 1 EMPIRICAL PREDICTIONS OF SOLOW MODEL WITH TECHNICAL PROGRESS 1.

More information

CHAPTER 4 ESTIMATES OF RETIREMENT, SOCIAL SECURITY BENEFIT TAKE-UP, AND EARNINGS AFTER AGE 50

CHAPTER 4 ESTIMATES OF RETIREMENT, SOCIAL SECURITY BENEFIT TAKE-UP, AND EARNINGS AFTER AGE 50 CHAPTER 4 ESTIMATES OF RETIREMENT, SOCIAL SECURITY BENEFIT TAKE-UP, AND EARNINGS AFTER AGE 5 I. INTRODUCTION This chapter describes the models that MINT uses to simulate earnings from age 5 to death, retirement

More information

CHAPTER 2 ESTIMATION AND PROJECTION OF LIFETIME EARNINGS

CHAPTER 2 ESTIMATION AND PROJECTION OF LIFETIME EARNINGS CHAPTER 2 ESTIMATION AND PROJECTION OF LIFETIME EARNINGS ABSTRACT This chapter describes the estimation and prediction of age-earnings profiles for American men and women born between 1931 and 1960. The

More information

Public-private sector pay differential in UK: A recent update

Public-private sector pay differential in UK: A recent update Public-private sector pay differential in UK: A recent update by D H Blackaby P D Murphy N C O Leary A V Staneva No. 2013-01 Department of Economics Discussion Paper Series Public-private sector pay differential

More information

Morten Frydenberg Wednesday, 12 May 2004

Morten Frydenberg Wednesday, 12 May 2004 " $% " * +, " --. / ",, 2 ", $, % $ 4 %78 % / "92:8/- 788;?5"= "8= < < @ "A57 57 "χ 2 = -value=. 5 OR =, OR = = = + OR B " B Linear ang Logistic Regression: Note. = + OR 2 women - % β β = + woman

More information

Limited Dependent Variables

Limited Dependent Variables Limited Dependent Variables Christopher F Baum Boston College and DIW Berlin Birmingham Business School, March 2013 Christopher F Baum (BC / DIW) Limited Dependent Variables BBS 2013 1 / 47 Limited dependent

More information

Econometric Methods for Valuation Analysis

Econometric Methods for Valuation Analysis Econometric Methods for Valuation Analysis Margarita Genius Dept of Economics M. Genius (Univ. of Crete) Econometric Methods for Valuation Analysis Cagliari, 2017 1 / 25 Outline We will consider econometric

More information

Business Cycle. Measures of the business cycle include. All of these require leading indicators of the business cycle

Business Cycle. Measures of the business cycle include. All of these require leading indicators of the business cycle Leading Indicators Good forecasting is often determined by finding leading indicators variables which reduce the MSE of multi-step forecast errors Leading indicators move in advance of the forecast variable

More information

The impact of cigarette excise taxes on beer consumption

The impact of cigarette excise taxes on beer consumption The impact of cigarette excise taxes on beer consumption Jeremy Cluchey Frank DiSilvestro PPS 313 18 April 2008 ABSTRACT This study attempts to determine what if any impact a state s decision to increase

More information

The relationship between GDP, labor force and health expenditure in European countries

The relationship between GDP, labor force and health expenditure in European countries Econometrics-Term paper The relationship between GDP, labor force and health expenditure in European countries Student: Nguyen Thu Ha Contents 1. Background:... 2 2. Discussion:... 2 3. Regression equation

More information

Modeling wages of females in the UK

Modeling wages of females in the UK International Journal of Business and Social Science Vol. 2 No. 11 [Special Issue - June 2011] Modeling wages of females in the UK Saadia Irfan NUST Business School National University of Sciences and

More information

Sociology Exam 3 Answer Key - DRAFT May 8, 2007

Sociology Exam 3 Answer Key - DRAFT May 8, 2007 Sociology 63993 Exam 3 Answer Key - DRAFT May 8, 2007 I. True-False. (20 points) Indicate whether the following statements are true or false. If false, briefly explain why. 1. The odds of an event occurring

More information

STATA log file for Time-Varying Covariates (TVC) Duration Model Estimations.

STATA log file for Time-Varying Covariates (TVC) Duration Model Estimations. STATA log file for Time-Varying Covariates (TVC) Duration Model Estimations. This STATA 8.0 log file reports estimations in which CDER Staff Aggregates and PDUFA variable are assigned to drug-months of

More information

The Trend of the Gender Wage Gap Over the Business Cycle

The Trend of the Gender Wage Gap Over the Business Cycle Gettysburg Economic Review Volume 4 Article 5 2010 The Trend of the Gender Wage Gap Over the Business Cycle Nicholas J. Finio Gettysburg College Class of 2010 Follow this and additional works at: http://cupola.gettysburg.edu/ger

More information

Chapter 6 Part 3 October 21, Bootstrapping

Chapter 6 Part 3 October 21, Bootstrapping Chapter 6 Part 3 October 21, 2008 Bootstrapping From the internet: The bootstrap involves repeated re-estimation of a parameter using random samples with replacement from the original data. Because the

More information

. ********** OUTPUT FILE: CARD & KRUEGER (1994)***********.. * STATA 10.0 CODE. * copyright C 2008 by Tito Boeri & Jan van Ours. * "THE ECONOMICS OF

. ********** OUTPUT FILE: CARD & KRUEGER (1994)***********.. * STATA 10.0 CODE. * copyright C 2008 by Tito Boeri & Jan van Ours. * THE ECONOMICS OF ********** OUTPUT FILE: CARD & KRUEGER (1994)*********** * STATA 100 CODE * copyright C 2008 by Tito Boeri & Jan van Ours * "THE ECONOMICS OF IMPERFECT LABOR MARKETS" * by Tito Boeri & Jan van Ours (2008)

More information

Why do the youth in Jamaica neither study nor work? Evidence from JSLC 2001

Why do the youth in Jamaica neither study nor work? Evidence from JSLC 2001 VERY PRELIMINARY, PLEASE DO NOT QUOTE Why do the youth in Jamaica neither study nor work? Evidence from JSLC 2001 Abstract Abbi Kedir 1 University of Leicester, UK E-mail: ak138@le.ac.uk and Michael Henry

More information

Module 9: Single-level and Multilevel Models for Ordinal Responses. Stata Practical 1

Module 9: Single-level and Multilevel Models for Ordinal Responses. Stata Practical 1 Module 9: Single-level and Multilevel Models for Ordinal Responses Pre-requisites Modules 5, 6 and 7 Stata Practical 1 George Leckie, Tim Morris & Fiona Steele Centre for Multilevel Modelling If you find

More information

Advanced Industrial Organization I Identi cation of Demand Functions

Advanced Industrial Organization I Identi cation of Demand Functions Advanced Industrial Organization I Identi cation of Demand Functions Måns Söderbom, University of Gothenburg January 25, 2011 1 1 Introduction This is primarily an empirical lecture in which I will discuss

More information

Are Old Age Workers Out of Luck? An Empirical Study of the U.S. Labor Market. Keith Brian Kline II Sreenath Majumder, PhD March 16, 2015

Are Old Age Workers Out of Luck? An Empirical Study of the U.S. Labor Market. Keith Brian Kline II Sreenath Majumder, PhD March 16, 2015 Are Old Age Workers Out of Luck? An Empirical Study of the U.S. Labor Market Keith Brian Kline II Sreenath Majumder, PhD March 16, 2015 Are Old Age Workers Out of Luck? An Empirical Study of the U.S. Labor

More information

GGraph. Males Only. Premium. Experience. GGraph. Gender. 1 0: R 2 Linear = : R 2 Linear = Page 1

GGraph. Males Only. Premium. Experience. GGraph. Gender. 1 0: R 2 Linear = : R 2 Linear = Page 1 GGraph 9 Gender : R Linear =.43 : R Linear =.769 8 7 6 5 4 3 5 5 Males Only GGraph Page R Linear =.43 R Loess 9 8 7 6 5 4 5 5 Explore Case Processing Summary Cases Valid Missing Total N Percent N Percent

More information

Regression Discontinuity Design

Regression Discontinuity Design Regression Discontinuity Design Aniceto Orbeta, Jr. Philippine Institute for Development Studies Stream 2 Impact Evaluation Methods (Intermediate) Making Impact Evaluation Matter Better Evidence for Effective

More information

Annex 1 to this report provides accuracy results for an additional poverty line beyond that required by the Congressional legislation. 1.

Annex 1 to this report provides accuracy results for an additional poverty line beyond that required by the Congressional legislation. 1. Poverty Assessment Tool Submission USAID/IRIS Tool for Kenya Submitted: July 20, 2010 Out-of-sample bootstrap results added: October 20, 2010 Typo corrected: July 31, 2012 The following report is divided

More information

Online Appendices Practical Procedures to Deal with Common Support Problems in Matching Estimation

Online Appendices Practical Procedures to Deal with Common Support Problems in Matching Estimation Online Appendices Practical Procedures to Deal with Common Support Problems in Matching Estimation Michael Lechner Anthony Strittmatter April 30, 2014 Abstract This paper assesses the performance of common

More information

Longitudinal Logistic Regression: Breastfeeding of Nepalese Children

Longitudinal Logistic Regression: Breastfeeding of Nepalese Children Longitudinal Logistic Regression: Breastfeeding of Nepalese Children Scientific Question Determine whether the breastfeeding of Nepalese children varies with child age and/or sex of child. Data: Nepal

More information

Appendix. Table A.1 (Part A) The Author(s) 2015 G. Chakrabarti and C. Sen, Green Investing, SpringerBriefs in Finance, DOI /

Appendix. Table A.1 (Part A) The Author(s) 2015 G. Chakrabarti and C. Sen, Green Investing, SpringerBriefs in Finance, DOI / Appendix Table A.1 (Part A) Dependent variable: probability of crisis (own) Method: ML binary probit (quadratic hill climbing) Included observations: 47 after adjustments Convergence achieved after 6 iterations

More information

Impact of Minimum Wage and Government Ideology on Unemployment Rates: The Case of Post-Communist Romania

Impact of Minimum Wage and Government Ideology on Unemployment Rates: The Case of Post-Communist Romania International Journal of Humanities and Social Science Vol. 2 No. 1; January 2012 Impact of Minimum Wage and Government Ideology on Unemployment Rates: The Case of Post-Communist Romania Abstract Bogdan

More information

Don t worry one bit about multicollinearity, because at the end of the day, you're going to be working with a favorite coefficient model.

Don t worry one bit about multicollinearity, because at the end of the day, you're going to be working with a favorite coefficient model. In theory, you might think that dummy variables would facilitate a simple and compelling test for bias or discrimination. For example, suppose you wanted to test for gender bias in pay. It's really very

More information

Module 4 Bivariate Regressions

Module 4 Bivariate Regressions AGRODEP Stata Training April 2013 Module 4 Bivariate Regressions Manuel Barron 1 and Pia Basurto 2 1 University of California, Berkeley, Department of Agricultural and Resource Economics 2 University of

More information

The SAS System 11:03 Monday, November 11,

The SAS System 11:03 Monday, November 11, The SAS System 11:3 Monday, November 11, 213 1 The CONTENTS Procedure Data Set Name BIO.AUTO_PREMIUMS Observations 5 Member Type DATA Variables 3 Engine V9 Indexes Created Monday, November 11, 213 11:4:19

More information

International Journal of Multidisciplinary Consortium

International Journal of Multidisciplinary Consortium Impact of Capital Structure on Firm Performance: Analysis of Food Sector Listed on Karachi Stock Exchange By Amara, Lecturer Finance, Management Sciences Department, Virtual University of Pakistan, amara@vu.edu.pk

More information

Can Information Change Personal Retirement Savings? Evidence from Social Security Benefits Statement Mailings. Susan Payne Carter William Skimmyhorn

Can Information Change Personal Retirement Savings? Evidence from Social Security Benefits Statement Mailings. Susan Payne Carter William Skimmyhorn Can Information Change Personal Retirement Savings? Evidence from Social Security Benefits Statement Mailings Susan Payne Carter William Skimmyhorn Online Appendix Appendix Table 1. Summary Statistics

More information

Maximum Likelihood Estimation Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised January 13, 2018

Maximum Likelihood Estimation Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised January 13, 2018 Maximum Likelihood Estimation Richard Williams, University of otre Dame, https://www3.nd.edu/~rwilliam/ Last revised January 3, 208 [This handout draws very heavily from Regression Models for Categorical

More information

Dummy Variables. 1. Example: Factors Affecting Monthly Earnings

Dummy Variables. 1. Example: Factors Affecting Monthly Earnings Dummy Variables A dummy variable or binary variable is a variable that takes on a value of 0 or 1 as an indicator that the observation has some kind of characteristic. Common examples: Sex (female): FEMALE=1

More information

CONVERGENCES IN MEN S AND WOMEN S LIFE PATTERNS: LIFETIME WORK, LIFETIME EARNINGS, AND HUMAN CAPITAL INVESTMENT $

CONVERGENCES IN MEN S AND WOMEN S LIFE PATTERNS: LIFETIME WORK, LIFETIME EARNINGS, AND HUMAN CAPITAL INVESTMENT $ CONVERGENCES IN MEN S AND WOMEN S LIFE PATTERNS: LIFETIME WORK, LIFETIME EARNINGS, AND HUMAN CAPITAL INVESTMENT $ Joyce Jacobsen a, Melanie Khamis b and Mutlu Yuksel c a Wesleyan University b Wesleyan

More information

Visualisierung von Nicht-Linearität bzw. Heteroskedastizität

Visualisierung von Nicht-Linearität bzw. Heteroskedastizität Visualisierung von Nicht-Linearität bzw. Heteroskedastizität. use..\wooldridge\stata\wage2, clear. scatter wage IQ Kommentar: Folie 38. graph copy a3, replace. summ IQ Variable Obs Mean Std. Dev. Min Max

More information

Poverty Assessment Tool Accuracy Submission: Addendum for New Poverty Lines USAID/IRIS Tool for Albania Submitted: September 14, 2011

Poverty Assessment Tool Accuracy Submission: Addendum for New Poverty Lines USAID/IRIS Tool for Albania Submitted: September 14, 2011 Poverty Assessment Tool Submission: Addendum for New Poverty Lines USAID/IRIS Tool for Albania Submitted: September 14, 2011 In order to improve the functionality of the existing PAT for Albania, the IRIS

More information

Getting Started in Logit and Ordered Logit Regression (ver. 3.1 beta)

Getting Started in Logit and Ordered Logit Regression (ver. 3.1 beta) Getting Started in Logit and Ordered Logit Regression (ver. 3. beta Oscar Torres-Reyna Data Consultant otorres@princeton.edu http://dss.princeton.edu/training/ Logit model Use logit models whenever your

More information

Thierry Kangoye and Zuzana Brixiová 1. March 2013

Thierry Kangoye and Zuzana Brixiová 1. March 2013 GENDER GAP IN THE LABOR MARKET IN SWAZILAND Thierry Kangoye and Zuzana Brixiová 1 March 2013 This paper documents the main gender disparities in the Swazi labor market and suggests mitigating policies.

More information

Health Expenditures and Life Expectancy Around the World: a Quantile Regression Approach

Health Expenditures and Life Expectancy Around the World: a Quantile Regression Approach ` DISCUSSION PAPER SERIES Health Expenditures and Life Expectancy Around the World: a Quantile Regression Approach Maksym Obrizan Kyiv School of Economics and Kyiv Economics Institute George L. Wehby University

More information

West Coast Stata Users Group Meeting, October 25, 2007

West Coast Stata Users Group Meeting, October 25, 2007 Estimating Heterogeneous Choice Models with Stata Richard Williams, Notre Dame Sociology, rwilliam@nd.edu oglm support page: http://www.nd.edu/~rwilliam/oglm/index.html West Coast Stata Users Group Meeting,

More information

Does Globalization Improve Quality of Life?

Does Globalization Improve Quality of Life? University of Tennessee, Knoxville Trace: Tennessee Research and Creative Exchange University of Tennessee Honors Thesis Projects University of Tennessee Honors Program 5-2017 Does Globalization Improve

More information

Day 3C Simulation: Maximum Simulated Likelihood

Day 3C Simulation: Maximum Simulated Likelihood Day 3C Simulation: Maximum Simulated Likelihood c A. Colin Cameron Univ. of Calif. - Davis... for Center of Labor Economics Norwegian School of Economics Advanced Microeconometrics Aug 28 - Sep 1, 2017

More information

Recruiting and Retaining High-quality State and Local Workers: Do Pensions Matter?

Recruiting and Retaining High-quality State and Local Workers: Do Pensions Matter? Recruiting and Retaining High-quality State and Local Workers: Do Pensions Matter? Geoffrey Sanzenbacher Research Economist Center for Retirement Research at Boston College National Tax Association Annual

More information

Chapter 11 Part 6. Correlation Continued. LOWESS Regression

Chapter 11 Part 6. Correlation Continued. LOWESS Regression Chapter 11 Part 6 Correlation Continued LOWESS Regression February 17, 2009 Goal: To review the properties of the correlation coefficient. To introduce you to the various tools that can be used to decide

More information

Impact of Macroeconomic Variables on Karachi Stock Market Returns

Impact of Macroeconomic Variables on Karachi Stock Market Returns International Journal of Economics and Finance; Vol. 10, No. 2; 2018 ISSN 16-1X E-ISSN 16-28 Published by Canadian Center of Science and Education Impact of Macroeconomic Variables on Karachi Stock Market

More information

Potential Impact of Aging on the Economic Growth of Quebec

Potential Impact of Aging on the Economic Growth of Quebec Potential Impact of Aging on the Economic Growth of Quebec Yvan Guillemette C.D. Howe Institute Presentation to the Seminar organized by the Quebec Pension Plan in cooperation with the Actuarial Science

More information

Poverty Assessment Tool Accuracy Submission USAID/IRIS Tool for Mexico Submitted: July 19, 2010

Poverty Assessment Tool Accuracy Submission USAID/IRIS Tool for Mexico Submitted: July 19, 2010 Poverty Assessment Tool Submission USAID/IRIS Tool for Mexico Submitted: July 19, 2010 The following report is divided into five sections. Section 1 describes the data set used to create the Poverty Assessment

More information

A COMPARATIVE ANALYSIS OF REAL AND PREDICTED INFLATION CONVERGENCE IN CEE COUNTRIES DURING THE ECONOMIC CRISIS

A COMPARATIVE ANALYSIS OF REAL AND PREDICTED INFLATION CONVERGENCE IN CEE COUNTRIES DURING THE ECONOMIC CRISIS A COMPARATIVE ANALYSIS OF REAL AND PREDICTED INFLATION CONVERGENCE IN CEE COUNTRIES DURING THE ECONOMIC CRISIS Mihaela Simionescu * Abstract: The main objective of this study is to make a comparative analysis

More information

STOCK VOLATILITY GREAT DEPRESSION AND THE. GUSTAVO S. CORTES University of Illinois at Urbana- Champaign

STOCK VOLATILITY GREAT DEPRESSION AND THE. GUSTAVO S. CORTES University of Illinois at Urbana- Champaign STOCK VOLATILITY AND THE GREAT DEPRESSION GUSTAVO S. CORTES University of Illinois at Urbana- Champaign MARC D. WEIDENMIER Claremont McKenna College & NBER Emory University Seminar May 2017 Volatility

More information

Postestimation commands predict Remarks and examples References Also see

Postestimation commands predict Remarks and examples References Also see Title stata.com stteffects postestimation Postestimation tools for stteffects Postestimation commands predict Remarks and examples References Also see Postestimation commands The following postestimation

More information

Itasca County Wellness Court Evaluation

Itasca County Wellness Court Evaluation Itasca County A U G U S T 2 0 1 5 Prepared by: Laura Schauben 451 Lexington Parkway North Saint Paul, Minnesota 55104 651-280-2700 www.wilderresearch.org Wilder Research Information. Insight. Impact. Contents

More information

1. A test of the theory is the regression, since no arbitrage implies, Under the null: a = 0, b =1, and the error e or u is unpredictable.

1. A test of the theory is the regression, since no arbitrage implies, Under the null: a = 0, b =1, and the error e or u is unpredictable. Aggregate Seminar Economics 37 Roger Craine revised 2/3/2007 The Forward Discount Premium Covered Interest Rate Parity says, ln( + i) = ln( + i*) + ln( F / S) i i* f s t+ the forward discount equals the

More information

Poverty Assessment Tool Accuracy Submission: Addendum for New Poverty Lines USAID/IRIS Tool for East Timor Submitted: September 14, 2011

Poverty Assessment Tool Accuracy Submission: Addendum for New Poverty Lines USAID/IRIS Tool for East Timor Submitted: September 14, 2011 Poverty Assessment Tool Submission: Addendum for New Poverty Lines USAID/IRIS Tool for East Timor Submitted: September 14, 2011 In order to improve the functionality of the existing PAT for East Timor,

More information

Review questions for Multinomial Logit/Probit, Tobit, Heckit, Quantile Regressions

Review questions for Multinomial Logit/Probit, Tobit, Heckit, Quantile Regressions 1. I estimated a multinomial logit model of employment behavior using data from the 2006 Current Population Survey. The three possible outcomes for a person are employed (outcome=1), unemployed (outcome=2)

More information