Problem Set 9 Heteroskedasticty Answers

Size: px
Start display at page:

Download "Problem Set 9 Heteroskedasticty Answers"

Transcription

1 Problem Set 9 Heteroskedasticty Answers /* INVESTIGATION OF HETEROSKEDASTICITY */ First graph data. u hetdat2. gra manuf gdp, s([country].) xlab ylab manufacturing output (US$ miilio korea switzerl mexico belgium netherla turkey sweden ireland singapor malaysia finland denmark chile portugal slovenia hungary israel greece hong norway kon slovakia kuwait syria spain canada e e+06 gdp (US $ million) uk italy france Data are tightly packed with exception of a few outliers (Italy, UK and France) Sometimes outliers can lead to heteroskedasticity. (Similar levels of GDP, big variation in level of manufacturing output).. reg manuf gdp Source SS df MS Number of obs = F( 1, 26) = Model e e+11 Prob > F = Residual e R-squared = Adj R-squared = Total e e+09 Root MSE = manuf Coef. Std. Err. t P> t [95% Conf. Interval] gdp _cons As a first check for heteroskedasticity, inspect pattern of residuals. If H.is present should see residual variance increasing (or decreasing) with value of gdp.. predict res, resid /* this command gets residuals from previous regression & saves them with the name res */

2 . gra res gdp, s([country]) yline(0) xlab ylab korea uk Residuals 0 ireland singapor malaysia slovenia chile finland turkey switzerl slovakia kuwait hungary portugal belgium israel syria denmark sweden greece norway hong kon netherla spain canada france mexico italy e e+06 gdp (US $ million) Graph is a little unclear. There is an increase in the residual spread with GDP, but with the exception of France. Need a more formal test to get round the ambiguity. 1) Goldfeld-Quandt Test. sort gdp /* sort data in ascending order */ Omit middle c observations (approx. 20% of total sample. In this example c=4) So N-c/2 = 28-4/2 = 12. reg manuf gdp if _n<=12 /* regression on first 12 observations. These should have smallest residual variance, if residual variance increases with level of GDP. Source SS df MS Number of obs = F( 1, 10) = Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = manuf Coef. Std. Err. t P> t [95% Conf. Interval] gdp _cons Now repeat regression for top 12 in the data set

3 . reg manuf gdp if _n>=17 Source SS df MS Number of obs = F( 1, 10) = Model e e+10 Prob > F = Residual e e+09 R-squared = Adj R-squared = Total e e+09 Root MSE = manuf Coef. Std. Err. t P> t [95% Conf. Interval] gdp _cons Goldfeld-Quandt Test = RSShigh/RSSlow ~ F(N-c-2k/2, N-c-2k/2) Where N= full sample size C= number observations dropped from middle K = number parameters in estimated equation = 1.358E10/1.57E8 ~ F(28-4-2(2)/2, (2)/2) = 86.5 ~ F(11,11) From tables, critical value at 5% level for F(11,11) = 2.82 So estimated F > Fcritical So reject null that data are homoskedastic. 2) Breusch-Pagan Test Idea is to regress a proxy for the residual variance on the variables thought to be causing the Het. problem, (or if not sure which variables, include all of them in this auxiliary regression). Hence this is a more general test for Het. than Goldfeld-Quandt test. Since residual variance s 2 = RSS/N-k = Σ u /N-k, then square of estimated ^ 2 residual for each observation, u, is a good proxy for the residual variance. ^ 2 Hence a regression of u i = d 0 + d 1 GDP i + e I This will suggest Het. if the coeffcicient on GDP in this auxiliary regression is significantly different from zero (residual variance correlated with rhs variable).. predict reshat, resid /* so 1 st save residuals */. g res2=reshat^2 /* square them */ Then regress square of residuals on all rhs variables from original regression (in this case just GDP). 2 ^

4 . reg res2 gdp Source SS df MS Number of obs = F( 1, 26) = 3.12 Model e e+18 Prob > F = Residual e e+18 R-squared = Adj R-squared = Total e e+18 Root MSE = 1.5e+09 res2 Coef. Std. Err. t P> t [95% Conf. Interval] gdp _cons 1.17e e e e+08 Breusch-Pagan Test is N*R 2 auxiliary = 28*0.107 = 3.00 This has a Chi-squared distribution with degrees of freedom equal to the number of right hand side variables in the auxiliary regression excluding the constant, (in this case 1). From tables, critical value at 5% level is 3.84 So estimated χ 2 < χ 2 critical, so accept null that residuals are not heteroskedastic Note that an equivalent test is to take the F test of goodness of fit of the model as a whole from the auxiliary regression)

5 If the exact form of H. is not known (and this is likely to be the case for most estimations. H. will vary across more than one variable -so these tests and methods above are not valid and it is unlikely that can say with certainty what the true functional form of H. looks like) In this case use White Adjusted standard errors (see lecture notes), which fix up the biased OLS estimates. (Note that these are not the same as if you knew the true form of H. but they are better than the unadjusted OLS ones). Original regression. reg manuf gdp Source SS df MS Number of obs = F( 1, 26) = Model e e+11 Prob > F = Residual e R-squared = Adj R-squared = Total e e+09 Root MSE = manuf Coef. Std. Err. t P> t [95% Conf. Interval] gdp _cons Now with adjusted standard errors (you should know what the adjustment does see lecture notes).. reg manuf gdp, robust Regression with robust standard errors Number of obs = 28 F( 1, 26) = Prob > F = R-squared = Root MSE = Robust manuf Coef. Std. Err. t P> t [95% Conf. Interval] gdp _cons consistent standard error is now larger (.108 compared with.013) and hence the t value is lower and the confidence interval larger than in the unadjusted regression. The reason you might worry is that this adjustment is only valid asymptotically (as the sample size gets very large). With only 28 observations this is far from being valid. So the adjusted standard errors and t stats. may be as wrong as the original OLS ones.

6 2. Sometimes heteroskedasticty exists within sub-samples of your data amongst variables not included in your regression. In this question you test whether the residual variances differ across the male and female subsamples of the data. In this case there are equal numbers of men and women in the data set so ok to use Goldfeld-Quandt test */ 1 st do Breusch-Pagan test again /* read in data set hetwage.dta */. u hetwage. reg logpay exper exper2 Source SS df MS Number of obs = F( 2, 967) = Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = logpay Coef. Std. Err. t P> t [95% Conf. Interval] exper exper _cons predict res, resid /* save residuals and square them */. g res2=res^2. reg res2 exper exper2 Source SS df MS Number of obs = F( 2, 967) = 1.63 Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = res2 Coef. Std. Err. t P> t [95% Conf. Interval] exper exper _cons Breusch-Pagan Test is N*R 2 auxiliary = 970* = 3.20 This has a Chi-squared distribution with degrees of freedom equal to the number of right hand side variables in the auxiliary regression excluding the constant, (in this case 1). From tables, critical value at 5% level is 3.84 So estimated χ 2 < χ 2 critical, so accept null that residuals are not heteroskedastic

7 Sometimes heteroskedastcity can be cause by variables that do not appear in the original regression (but perhaps should).. reg logpay exper exper2 /* pooled regression on men and women together */ Source SS df MS Number of obs = F( 2, 967) = Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = logpay Coef. Std. Err. t P> t [95% Conf. Interval] exper exper _cons Regression suggests that pay rises with work experience but at a decreasing rate, (the coefficient on the quadratic is negative) Now do separate regressions for a) women. reg logpay exper exper2 if female==1 Source SS df MS Number of obs = F( 2, 482) = Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = logpay Coef. Std. Err. t P> t [95% Conf. Interval] exper exper _cons b) men. reg logpay exper exper2 if female==0 Source SS df MS Number of obs = F( 2, 482) = Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE =.5212 logpay Coef. Std. Err. t P> t [95% Conf. Interval] exper exper _cons

8 In this case Goldfeld-Quandt Test = RSShigh/RSSlow ~ F(N-c-2k/2, N-c-2k/2) Becomes RSSwomen/RSSmen (since women are the high variance sub-sample look at the RSS in the output above) Where N= full sample size = 970 C= number observations dropped from middle (zero in this case ) K = number parameters in estimated equation (3) = 135.0/130.9 ~ F(970-2(2)/2, 970-2(2)/2) = 1.03 ~ F(483, 483) From tables, critical value at 5% level for F(483,483) = 1.00 So estimated F > Fcritical So again reject null that data are homoskedastic, (though this is very borderline and in most cases will not make much difference if pool the data) Fix up combined regression using White-adjusted standard errors.. reg logpay exper exper2, robust Regression with robust standard errors Number of obs = 970 F( 2, 967) = Prob > F = R-squared = Root MSE = Robust logpay Coef. Std. Err. t P> t [95% Conf. Interval] exper exper _cons Note sample size is 970, so do not have to worry too much about small sample effects on White adjusted standard errors.

9 3. You have data on firm size, N, and the level of profits, PROF, measured in million, for 118 firms. You estimate the following regression: ^ (1) PROF = 18, ,000 N - 1.0N 2 R 2 = 0.35 (12,000) (100) (0.25) RSS = 20,000 where the numbers in brackets are estimated standard errors You then run the regression twice more, first with the 50 firms with the lowest profits, then with the 50 firms with the highest profits. The residual sums of squares in the two regressions are 10,000 and 35,000 respectively. i) Interpret the results. At what firm size are profits maximised? Should recognise that firm size variables are statistically significant (t values >2) Constant is not. Constant gives notional amount of profit when firm size is zero. R-squared suggests 35% of variation in profits is explained by right hand side variables. Coefficients suggest profits rise then fall with firm size Profits are maximised when dprof/dn = 0 (1 st order condition for a max) Where (from question) dprof/dn = *1.0N = 0 2N = 1000 N= 500 ii) What do you understand by the term heteroskedasticity? What causes heteroskedasticity? What are the implications for OLS estimation if heteroskedasticity exists? - H. means that is residual variance not constant. Can be caused by incorrect functional form in dependent or dependent variables (try taking logs). Otherwise nature of behavioural agents (firms, individuals) means that variation in sample populations often depends on the values of the right hand side variables under study. Consequences. OLS estimates still unbiased. (see lecture notes for proof). Standard errors are biased (and therefore t and F values and confidence intervals also biased) iii) Perform a test for heteroskedasticity in the model. Comment on your results. Given information in the question the only test you could do is the Goldfeld-Quandt test for heteroskedasticity = RSShigh variance sample/rsslow variance sample ~ F(N-c-2k/2, N-c-2k/2)

10 Where N= full sample size C= number observations dropped from middle K = number parameters in estimated equation = 35000/10000 ~ F( (3)/2, (3)/2) = 3.5 ~ F(47,47) From tables, critical value at 5% level for F(16,16) = 2.32 So estimated F > Fcritical So reject null hypothesis of no heteroskedasticity

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

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

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

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

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

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 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

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

İ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

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

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

[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

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

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

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

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

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

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

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

ECON Introductory Econometrics. Seminar 4. Stock and Watson Chapter 8 ECON4150 - Introductory Econometrics Seminar 4 Stock and Watson Chapter 8 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

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

Stat 328, Summer 2005

Stat 328, Summer 2005 Stat 328, Summer 2005 Exam #2, 6/18/05 Name (print) UnivID I have neither given nor received any unauthorized aid in completing this exam. Signed Answer each question completely showing your work where

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

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

Does One Law Fit All? Cross-Country Evidence on Okun s Law

Does One Law Fit All? Cross-Country Evidence on Okun s Law Does One Law Fit All? Cross-Country Evidence on Okun s Law Laurence Ball Johns Hopkins University Global Labor Markets Workshop Paris, September 1-2, 2016 1 What the paper does and why Provides estimates

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

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

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

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

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

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

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

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

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

Information and Capital Flows Revisited: the Internet as a

Information and Capital Flows Revisited: the Internet as a Running head: INFORMATION AND CAPITAL FLOWS REVISITED Information and Capital Flows Revisited: the Internet as a determinant of transactions in financial assets Changkyu Choi a, Dong-Eun Rhee b,* and Yonghyup

More information

Financial wealth of private households worldwide

Financial wealth of private households worldwide Economic Research Financial wealth of private households worldwide Munich, October 217 Recovery in turbulent times Assets and liabilities of private households worldwide in EUR trillion and annualrate

More information

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

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

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

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

Internet Appendix to accompany Currency Momentum Strategies. by Lukas Menkhoff Lucio Sarno Maik Schmeling Andreas Schrimpf

Internet Appendix to accompany Currency Momentum Strategies. by Lukas Menkhoff Lucio Sarno Maik Schmeling Andreas Schrimpf Internet Appendix to accompany Currency Momentum Strategies by Lukas Menkhoff Lucio Sarno Maik Schmeling Andreas Schrimpf 1 Table A.1 Descriptive statistics: Individual currencies. This table shows descriptive

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

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

World Consumer Income and Expenditure Patterns

World Consumer Income and Expenditure Patterns World Consumer Income and Expenditure Patterns 2011 www.euromonitor.com iii Summary of Contents Contents Summary of Contents Section 1 Introduction 1 Section 2 Socio-economic parameters 21 Section 3 Annual

More information

Constraints on Exchange Rate Flexibility in Transition Economies: a Meta-Regression Analysis of Exchange Rate Pass-Through

Constraints on Exchange Rate Flexibility in Transition Economies: a Meta-Regression Analysis of Exchange Rate Pass-Through Constraints on Exchange Rate Flexibility in Transition Economies: a Meta-Regression Analysis of Exchange Rate Pass-Through Igor Velickovski & Geoffrey Pugh Applied Economics 43 (27), 2011 National Bank

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

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

University of Iceland May 12th Helga Kristjánsdóttir

University of Iceland May 12th Helga Kristjánsdóttir University of Iceland May 12th 2012 Helga Kristjánsdóttir The sagas of Icelanders tell about how Vikings settled in Iceland, with about third of them coming from Ireland (Hallgrímsson et al., 2004). Not

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

San Francisco Retiree Health Care Trust Fund Education Materials on Public Equity

San Francisco Retiree Health Care Trust Fund Education Materials on Public Equity M E K E T A I N V E S T M E N T G R O U P 5796 ARMADA DRIVE SUITE 110 CARLSBAD CA 92008 760 795 3450 fax 760 795 3445 www.meketagroup.com The Global Equity Opportunity Set MSCI All Country World 1 Index

More information

The Velocity of Money and Nominal Interest Rates: Evidence from Developed and Latin-American Countries

The Velocity of Money and Nominal Interest Rates: Evidence from Developed and Latin-American Countries The Velocity of Money and Nominal Interest Rates: Evidence from Developed and Latin-American Countries Petr Duczynski Abstract This study examines the behavior of the velocity of money in developed and

More information

Monetary policy regimes and exchange rate fluctuations

Monetary policy regimes and exchange rate fluctuations Seðlabanki Íslands Monetary policy regimes and exchange rate fluctuations The views are of the author and do not necessarily reflect those of the Central Bank of Iceland Thórarinn G. Pétursson Central

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

Determinants of demand for life insurance in European countries

Determinants of demand for life insurance in European countries Determinants of demand for life insurance in European countries AUTHORS ARTICLE INFO JOURNAL Sibel Çelik Mustafa Mesut Kayali Sibel Çelik and Mustafa Mesut Kayali (29). Determinants of demand for life

More information

STATISTICS 110/201, FALL 2017 Homework #5 Solutions Assigned Mon, November 6, Due Wed, November 15

STATISTICS 110/201, FALL 2017 Homework #5 Solutions Assigned Mon, November 6, Due Wed, November 15 STATISTICS 110/201, FALL 2017 Homework #5 Solutions Assigned Mon, November 6, Due Wed, November 15 For this assignment use the Diamonds dataset in the Stat2Data library. The dataset is used in examples

More information

Low employment among the 50+ population in Hungary

Low employment among the 50+ population in Hungary Low employment among the + population in Hungary The role of incentives, health and cognitive capacities Janos Divenyi (Central European University) and Gabor Kezdi (Central European University and IE-CRSHAS)

More information

Impact of Stock Market, Trade and Bank on Economic Growth for Latin American Countries: An Econometrics Approach

Impact of Stock Market, Trade and Bank on Economic Growth for Latin American Countries: An Econometrics Approach Science Journal of Applied Mathematics and Statistics 2018; 6(1): 1-6 http://www.sciencepublishinggroup.com/j/sjams doi: 10.11648/j.sjams.20180601.11 ISSN: 2376-9491 (Print); ISSN: 2376-9513 (Online) Impact

More information

Chapter 4 Level of Volatility in the Indian Stock Market

Chapter 4 Level of Volatility in the Indian Stock Market Chapter 4 Level of Volatility in the Indian Stock Market Measurement of volatility is an important issue in financial econometrics. The main reason for the prominent role that volatility plays in financial

More information

Financial Development and the Liquidity of Cross- Listed Stocks; The Case of ADR's

Financial Development and the Liquidity of Cross- Listed Stocks; The Case of ADR's Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2017 Financial Development and the Liquidity of Cross- Listed Stocks; The Case of ADR's Jed DeCamp Follow

More information

Reporting practices for domestic and total debt securities

Reporting practices for domestic and total debt securities Last updated: 27 November 2017 Reporting practices for domestic and total debt securities While the BIS debt securities statistics are in principle harmonised with the recommendations in the Handbook on

More information

Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers

Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers Economics 310 Menzie D. Chinn Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers This problem set is due in lecture on Wednesday, December 15th. No late problem sets will

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

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

Approach to Employment Injury (EI) compensation benefits in the EU and OECD

Approach to Employment Injury (EI) compensation benefits in the EU and OECD Approach to (EI) compensation benefits in the EU and OECD The benefits of protection can be divided in three main groups. The cash benefits include disability pensions, survivor's pensions and other short-

More information

The Case for Fundamental Tax Reform: Overview of the Current Tax System

The Case for Fundamental Tax Reform: Overview of the Current Tax System The Case for Fundamental Tax Reform: Overview of the Current Tax System Sources of Federal Receipts Projected for 2016 Excise Taxes 2.9% Estate & Gift Taxes 0.6% Corporate Income Taxes 9.8% Other Taxes

More information

PENSIONS IN OECD COUNTRIES: INDICATORS AND DEVELOPMENTS

PENSIONS IN OECD COUNTRIES: INDICATORS AND DEVELOPMENTS PENSIONS IN OECD COUNTRIES: INDICATORS AND DEVELOPMENTS Marius Lüske Directorate for Employment, Labour and Social Affairs, OECD Lisbon, 28.09.2018 Marius.LUSKE@oecd.org www.oecd.org/els OUTLINE Talk based

More information

THE GROSS AND NET RATES OF REVENUES REPLACEMENT WITHIN THE RETIRING PENSIONS

THE GROSS AND NET RATES OF REVENUES REPLACEMENT WITHIN THE RETIRING PENSIONS THE GROSS AND NET RATES OF REVENUES REPLACEMENT WITHIN THE RETIRING PENSIONS Tudor Colomeischi Department of Computer Science, Stefan cel Mare University of Suceava, ROMANIA. tudorcolomeischi@yahoo.ro

More information

PREDICTING VEHICLE SALES FROM GDP

PREDICTING VEHICLE SALES FROM GDP UMTRI--6 FEBRUARY PREDICTING VEHICLE SALES FROM GDP IN 8 COUNTRIES: - MICHAEL SIVAK PREDICTING VEHICLE SALES FROM GDP IN 8 COUNTRIES: - Michael Sivak The University of Michigan Transportation Research

More information

Internet Appendix: Government Debt and Corporate Leverage: International Evidence

Internet Appendix: Government Debt and Corporate Leverage: International Evidence Internet Appendix: Government Debt and Corporate Leverage: International Evidence Irem Demirci, Jennifer Huang, and Clemens Sialm September 3, 2018 1 Table A1: Variable Definitions This table details the

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

Empirical appendix of Public Expenditure Distribution, Voting, and Growth

Empirical appendix of Public Expenditure Distribution, Voting, and Growth Empirical appendix of Public Expenditure Distribution, Voting, and Growth Lorenzo Burlon August 11, 2014 In this note we report the empirical exercises we conducted to motivate the theoretical insights

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

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

Corrigendum. OECD Pensions Outlook 2012 DOI: ISBN (print) ISBN (PDF) OECD 2012

Corrigendum. OECD Pensions Outlook 2012 DOI:   ISBN (print) ISBN (PDF) OECD 2012 OECD Pensions Outlook 2012 DOI: http://dx.doi.org/9789264169401-en ISBN 978-92-64-16939-5 (print) ISBN 978-92-64-16940-1 (PDF) OECD 2012 Corrigendum Page 21: Figure 1.1. Average annual real net investment

More information

Final Exam, section 1. Thursday, May hour, 30 minutes

Final Exam, section 1. Thursday, May hour, 30 minutes San Francisco State University Michael Bar ECON 312 Spring 2018 Final Exam, section 1 Thursday, May 17 1 hour, 30 minutes Name: Instructions 1. This is closed book, closed notes exam. 2. You can use one

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

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

Capital Flows, Cross-Border Banking and Global Liquidity. May 2012

Capital Flows, Cross-Border Banking and Global Liquidity. May 2012 Capital Flows, Cross-Border Banking and Global Liquidity Valentina Bruno Hyun Song Shin May 2012 Bruno and Shin: Capital Flows, Cross-Border Banking and Global Liquidity 1 Gross Capital Flows Capital flows

More information

Decumulation debate. New Zealand Society of Actuaries Financial Services Forum 16 November 2015

Decumulation debate. New Zealand Society of Actuaries Financial Services Forum 16 November 2015 Decumulation debate New Zealand Society of Actuaries Financial Services Forum 16 November 2015 1 Contents Recap of our conclusions International developments and relevance Importance of advice Rules of

More information

a. Explain why the coefficients change in the observed direction when switching from OLS to Tobit estimation.

a. Explain why the coefficients change in the observed direction when switching from OLS to Tobit estimation. 1. Using data from IRS Form 5500 filings by U.S. pension plans, I estimated a model of contributions to pension plans as ln(1 + c i ) = α 0 + U i α 1 + PD i α 2 + e i Where the subscript i indicates the

More information

Actuarial Supply & Demand. By i.e. muhanna. i.e. muhanna Page 1 of

Actuarial Supply & Demand. By i.e. muhanna. i.e. muhanna Page 1 of By i.e. muhanna i.e. muhanna Page 1 of 8 040506 Additional Perspectives Measuring actuarial supply and demand in terms of GDP is indeed a valid basis for setting the actuarial density of a country and

More information

10% 10% 15% 15% Caseload: WE. 15% Caseload: SS 10% 10% 15%

10% 10% 15% 15% Caseload: WE. 15% Caseload: SS 10% 10% 15% Percentchangeincaseload 15% 10% 5% 0% 5% 10% 15% Caseload: AO 0 1 2 3 4 5 Percentchangein caseload 15% 10% 5% 0% 5% 10% 15% Caseload: NC 0 1 2 3 4 5 Years Years Percentchangein caseload 15% 10% 5% 0% 5%

More information

Washington University Fall Economics 487

Washington University Fall Economics 487 Washington University Fall 2009 Department of Economics James Morley Economics 487 Project Proposal due Tuesday 11/10 Final Project due Wednesday 12/9 (by 5:00pm) (20% penalty per day if the project is

More information

CANADA S LABOUR MARKET PRE- AND POST-CRISIS

CANADA S LABOUR MARKET PRE- AND POST-CRISIS CANADA S LABOUR MARKET PRE- AND POST-CRISIS WILLIAM ROBSON PRESIDENT AND CEO, C.D. HOWE INSTITUTE PRESENTATION TO THE NERO MEETING AT THE OECD 20 JUNE 2011 CANADA S LABOUR MARKET HIGHLIGHTS Decent Top-Level

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

University of Macedonia Department of Economics. Discussion Paper Series. Inflation, inflation uncertainty and growth: are they related?

University of Macedonia Department of Economics. Discussion Paper Series. Inflation, inflation uncertainty and growth: are they related? ISSN 1791-3144 University of Macedonia Department of Economics Discussion Paper Series Inflation, inflation uncertainty and growth: are they related? Stilianos Fountas Discussion Paper No. 12/2010 Department

More information

Trust and Fertility Dynamics. Arnstein Aassve, Università Bocconi Francesco C. Billari, University of Oxford Léa Pessin, Universitat Pompeu Fabra

Trust and Fertility Dynamics. Arnstein Aassve, Università Bocconi Francesco C. Billari, University of Oxford Léa Pessin, Universitat Pompeu Fabra Trust and Fertility Dynamics Arnstein Aassve, Università Bocconi Francesco C. Billari, University of Oxford Léa Pessin, Universitat Pompeu Fabra 1 Background Fertility rates across OECD countries differ

More information

Statistical Models of Stocks and Bonds. Zachary D Easterling: Department of Economics. The University of Akron

Statistical Models of Stocks and Bonds. Zachary D Easterling: Department of Economics. The University of Akron Statistical Models of Stocks and Bonds Zachary D Easterling: Department of Economics The University of Akron Abstract One of the key ideas in monetary economics is that the prices of investments tend to

More information

Sources of Government Revenue in the OECD, 2016

Sources of Government Revenue in the OECD, 2016 FISCAL FACT No. 517 July, 2016 Sources of Government Revenue in the OECD, 2016 By Kyle Pomerleau Director of Federal Projects Kevin Adams Research Assistant Key Findings OECD countries rely heavily on

More information

Burden of Taxation: International Comparisons

Burden of Taxation: International Comparisons Burden of Taxation: International Comparisons Standard Note: SN/EP/3235 Last updated: 15 October 2008 Author: Bryn Morgan Economic Policy & Statistics Section This note presents data comparing the national

More information

Investing for our Future Welfare. Peter Whiteford, ANU

Investing for our Future Welfare. Peter Whiteford, ANU Investing for our Future Welfare Peter Whiteford, ANU Investing for our future welfare Presentation to Jobs Australia National Conference, Canberra, 20 October 2016 Peter Whiteford, Crawford School of

More information

Global Business Barometer April 2008

Global Business Barometer April 2008 Global Business Barometer April 2008 The Global Business Barometer is a quarterly business-confidence index, conducted for The Economist by the Economist Intelligence Unit What are your expectations of

More information

A short history of debt

A short history of debt A short history of debt In the words of the late Charles Kindleberger, debt/financial crises are a hardy perennial we have been here many times before. Over the past decade and a half the ratio of global

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

Tax Burden, Tax Mix and Economic Growth in OECD Countries

Tax Burden, Tax Mix and Economic Growth in OECD Countries Tax Burden, Tax Mix and Economic Growth in OECD Countries PAOLA PROFETA RICCARDO PUGLISI SIMONA SCABROSETTI June 30, 2015 FIRST DRAFT, PLEASE DO NOT QUOTE WITHOUT THE AUTHORS PERMISSION Abstract Focusing

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

Table 4. Probit model of union membership. Probit coefficients are presented below. Data from March 2008 Current Population Survey.

Table 4. Probit model of union membership. Probit coefficients are presented below. Data from March 2008 Current Population Survey. 1. Using a probit model and data from the 2008 March Current Population Survey, I estimated a probit model of the determinants of pension coverage. Three specifications were estimated. The first included

More information

What Can Macroeconometric Models Say About Asia-Type Crises?

What Can Macroeconometric Models Say About Asia-Type Crises? What Can Macroeconometric Models Say About Asia-Type Crises? Ray C. Fair May 1999 Abstract This paper uses a multicountry econometric model to examine Asia-type crises. Experiments are run for Thailand,

More information

Name: 1. Use the data from the following table to answer the questions that follow: (10 points)

Name: 1. Use the data from the following table to answer the questions that follow: (10 points) Economics 345 Mid-Term Exam October 8, 2003 Name: Directions: You have the full period (7:20-10:00) to do this exam, though I suspect it won t take that long for most students. You may consult any materials,

More information

Macroeconomic Theory and Policy

Macroeconomic Theory and Policy ECO 209Y Macroeconomic Theory and Policy Lecture 3: Aggregate Expenditure and Equilibrium Income Gustavo Indart Slide 1 Assumptions We will assume that: There is no depreciation There are no indirect taxes

More information

Linking Education for Eurostat- OECD Countries to Other ICP Regions

Linking Education for Eurostat- OECD Countries to Other ICP Regions International Comparison Program [05.01] Linking Education for Eurostat- OECD Countries to Other ICP Regions Francette Koechlin and Paulus Konijn 8 th Technical Advisory Group Meeting May 20-21, 2013 Washington

More information