Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez

Size: px
Start display at page:

Download "Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez"

Transcription

1 Modeling Panel Data: Choosing the Correct Strategy Roberto G. Gutierrez

2 2 / 25 #analyticsx Overview Panel data are ubiquitous in not only economics, but in all fields Panel data have intrinsic modeling advantages You model panel data in SAS with the PANEL procedure Different model alternatives depending on assumptions and properties Key new features in SAS/ETS 14.1

3 3 / 25 #analyticsx Panel Data Panel data consist of a set of individuals measured over several points in time Known by other names: longitudinal data, cross-sectional time series, clustered data, multilevel (two-level) data, etc. Data collected in this manner offer key design advantages to modeling The greatest advantage is that the individuals act as their own control group

4 4 / 25 #analyticsx Panel Regression Model Formally, consider the linear regression model y it D ˇ0 C ˇxX it C ˇzZ i C i C it for i D 1; : : : ; N individuals on t D 1; : : : ; T i time periods. The X variables vary over time The Z variables are constant within individuals The i are individual (or cross section) effects The it are the observation-level errors Different estimation strategies for what you are willing to assume about X, Z, i, and it

5 5 / 25 #analyticsx Grocery Data Consumer-loyalty data from 330 households who shopped at a grocery chain in Raleigh, North Carolina Monthly expenditures for the year 2011; some monthly data missing Model meat expenditures on the following factors: I I I I I Received government assistance for that month? Household size Rural store location visited during the month? Were at least 10% of total expenditures for alcohol? The number of meals per week outside household, as provided on initial survey Specifically, assess the association with government assistance controlling for the other factors, and for latent household effects

6 6 / 25 #analyticsx Data Statement data Grocery; input HouseID Month Meat Govt Hsize Rural Alcohol MealsOut; datalines; ;

7 7 / 25 #analyticsx Random-Effects Estimation Model is Meat it D ˇ0 C ˇ1Govt it C ˇ2Hsize i C ˇ3Rural it C ˇ4Alcohol it C ˇ5MealsOut i C i C it Random-effects estimation is the most common strategy Treats the households as a random sample and the i as uncorrelated with X, Z, and it A Hausman test is provided as a referendum on that assumption Also known as generalized least squares (GLS)

8 8 / 25 #analyticsx Random-Effects Estimation proc panel data = Grocery; id HouseID Month; model Meat = Govt Hsize Rural Alcohol MealsOut / ranone; run; Wansbeek and Kapteyn Variance Components (RanOne) Dependent Variable: Meat (Meat purchases per store visit) Model Description Estimation Method RanOne Number of Cross Sections 330 Time Series Length 12 Fit Statistics SSE DFE 3567 MSE Root MSE R-Square

9 9 / 25 #analyticsx Random-Effects Estimation Wansbeek and Kapteyn Variance Components (RanOne) Dependent Variable: Meat (Meat purchases per store visit) Variance Component Estimates Variance Component for Cross Sections Variance Component for Error Hausman Test for Random Effects Coefficients DF m Value Pr > m <.0001 Parameter Estimates Variable DF Estimate Standard Error t Value Pr > t Label Intercept <.0001 Intercept Govt < if used government assistance that month Hsize <.0001 Household size Rural < if rural location visited at least once Alcohol < if at least 10% spent on alcohol MealsOut <.0001 Meals per week outside of household (survey)

10 10 / 25 #analyticsx Correlated Individual Effects The Hausman test puts the random-effects results into question The problem is that the individual effects are likely correlated with the explanatory variables This does not happen in designed experiments, but who has that these days? Does the regression coefficient on Govt represent A. The effect of a household going on government assistance; or B. A comparison of two different households, one on government assistance throughout and one not? What do you want it to represent?

11 Correlated Individual Effects 11 / 25 #analyticsx

12 12 / 25 #analyticsx Fixed-Effects Estimation Fixed-effects estimation does not assume that individual effects are uncorrelated It produces regression coefficients that are based solely on within-household comparisons Equivalent to inserting a dummy regressor for each household You lose some efficiency from not using any between-household data Regressors are required to vary within households

13 13 / 25 #analyticsx Fixed-Effects Estimation proc panel data = Grocery; id HouseID Month; model Meat = Govt Hsize Rural Alcohol MealsOut / fixone; run;

14 14 / 25 #analyticsx Fixed-Effects Estimation Fixed One-Way Estimates Dependent Variable: Meat (Meat purchases per store visit) F Test for No Fixed Effects Num DF Den DF F Value Pr > F <.0001 Parameter Estimates Variable DF Estimate Standard Error t Value Pr > t Label Intercept <.0001 Intercept Govt < if used government assistance that month Hsize Household size Rural < if rural location visited at least once Alcohol < if at least 10% spent on alcohol MealsOut Meals per week outside of household (survey)

15 15 / 25 #analyticsx Between-Groups Estimation Rarely useful, put provided for comparison proc panel data = Grocery; id HouseID Month; model Meat = Govt Hsize Rural Alcohol MealsOut / btwng; run;

16 16 / 25 #analyticsx Between-Groups Estimation Between-Groups Estimates Dependent Variable: Meat (Meat purchases per store visit) Parameter Estimates Variable DF Estimate Standard Error t Value Pr > t Label Intercept <.0001 Intercept Govt < if used government assistance that month Hsize <.0001 Household size Rural if rural location visited at least once Alcohol if at least 10% spent on alcohol MealsOut <.0001 Meals per week outside of household (survey)

17 17 / 25 #analyticsx Hausman-Taylor Estimation Random effects: All regressors uncorrelated with i Fixed effects: They might all be correlated Hausman-Taylor: Why not stipulate some regressors as correlated, and have the best of both worlds? Choose correlated variables based on substantive knowledge, or guess; there s a test for that Estimation is done using instrumental variables, determined internally This is a new feature of SAS/ETS 14.1

18 18 / 25 #analyticsx Hausman-Taylor Estimation proc panel data = Grocery; id HouseID Month; instruments correlated = (Govt Mealsout); model Meat = Govt Hsize Rural Alcohol MealsOut / htaylor; run;

19 19 / 25 #analyticsx Hausman-Taylor Estimation Hausman and Taylor Model for Correlated Individual Effects (HTaylor) Dependent Variable: Meat (Meat purchases per store visit) Variance Component Estimates Variance Component for Cross Sections Variance Component for Error Hausman Test against Fixed Effects Coefficients DF m Value Pr > m Parameter Estimates Variable Type DF Estimate Standard Error t Value Pr > t Label Intercept <.0001 Intercept Govt C < if used government assistance that month Hsize TI <.0001 Household size Rural < if rural location visited at least once Alcohol < if at least 10% spent on alcohol MealsOut C TI Meals per week outside of household (survey) C: correlated with the individual effects TI: constant (time-invariant) within cross sections

20 20 / 25 #analyticsx The COMPARE Statement The COMPARE statement is another new feature of PROC PANEL in SAS/ETS 14.1 Makes it easy to compare various models and estimators side by side proc panel data = Grocery; id HouseID Month; instruments correlated = (Govt Mealsout); model Meat = Govt Hsize Rural Alcohol MealsOut / ranone fixone btwng htaylor; compare; run;

21 21 / 25 #analyticsx The COMPARE Statement Model Comparison Dependent Variable: Meat (Meat purchases per store visit) Comparison of Model Parameter Estimates Variable Model 1 FixOne Model 1 RanOne Model 1 HTaylor Model 1 BtwGrps Intercept Estimate Std Err Govt Estimate Std Err Hsize Estimate Std Err Rural Estimate Std Err Alcohol Estimate Std Err MealsOut Estimate Std Err

22 22 / 25 #analyticsx Other Capabilities PROC PANEL can also do much more: Two-way models Dynamic-panel models Adjustments for serial correlation, heteroscedasticity, and clustering Unit root tests Model specification tests (e.g. Durbin-Watson)

23 23 / 25 #analyticsx Summary Panel data offer modeling advantages Use PROC PANEL in SAS/ETS for panel data regression Many estimators available depending on assumptions Correlated individual effects can be problematic, but there are solutions New features in SAS/ETS 14.1

24

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING Multiple (Linear) Regression Introductory example Page 1 1 options ps=256 ls=132 nocenter nodate nonumber; 3 DATA ONE; 4 TITLE1 ''; 5 INPUT X1 X2 X3 Y; 6 **** LABEL Y ='Plant available phosphorus' 7 X1='Inorganic

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

Financial Time Series Analysis (FTSA)

Financial Time Series Analysis (FTSA) Financial Time Series Analysis (FTSA) Lecture 6: Conditional Heteroscedastic Models Few models are capable of generating the type of ARCH one sees in the data.... Most of these studies are best summarized

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

SAS Simple Linear Regression Example

SAS Simple Linear Regression Example SAS Simple Linear Regression Example This handout gives examples of how to use SAS to generate a simple linear regression plot, check the correlation between two variables, fit a simple linear regression

More information

ECG 752: Econometrics II Spring Assessed Computer Assignment 3: Answer Key

ECG 752: Econometrics II Spring Assessed Computer Assignment 3: Answer Key ECG 752: Econometrics II Spring 2005 Assessed Computer Assignment 3: Answer Key Question 1 The time series plots of x(d), x(bw) and x(m) are presented below. 1 A common characteristic of all series is

More information

An Empirical Examination of Traditional Equity Valuation Models: The case of the Athens Stock Exchange

An Empirical Examination of Traditional Equity Valuation Models: The case of the Athens Stock Exchange European Research Studies, Volume 7, Issue (1-) 004 An Empirical Examination of Traditional Equity Valuation Models: The case of the Athens Stock Exchange By G. A. Karathanassis*, S. N. Spilioti** Abstract

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

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

LAMPIRAN PERHITUNGAN EVIEWS

LAMPIRAN PERHITUNGAN EVIEWS LAMPIRAN PERHITUNGAN EVIEWS DESCRIPTIVE PK PDRB TP TKM Mean 12.22450 10.16048 14.02443 12.63677 Median 12.41945 10.09179 14.22736 12.61400 Maximum 13.53955 12.73508 15.62581 13.16721 Minimum 10.34509 8.579417

More information

Lloyds TSB. Derek Hull, John Adam & Alastair Jones

Lloyds TSB. Derek Hull, John Adam & Alastair Jones Forecasting Bad Debt by ARIMA Models with Multiple Transfer Functions using a Selection Process for many Candidate Variables Lloyds TSB Derek Hull, John Adam & Alastair Jones INTRODUCTION: No statistical

More information

Empirical Methods for Corporate Finance. Panel Data, Fixed Effects, and Standard Errors

Empirical Methods for Corporate Finance. Panel Data, Fixed Effects, and Standard Errors Empirical Methods for Corporate Finance Panel Data, Fixed Effects, and Standard Errors The use of panel datasets Source: Bowen, Fresard, and Taillard (2014) 4/20/2015 2 The use of panel datasets Source:

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

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron Easerling 1 Are the movements of stocks, bonds, and housing linked? Zachary D Easterling 1140324 Department of Economics The University of Akron One of the key ideas in monetary economics is that the prices

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

New SAS Procedures for Analysis of Sample Survey Data

New SAS Procedures for Analysis of Sample Survey Data New SAS Procedures for Analysis of Sample Survey Data Anthony An and Donna Watts, SAS Institute Inc, Cary, NC Abstract Researchers use sample surveys to obtain information on a wide variety of issues Many

More information

Hasil Common Effect Model

Hasil Common Effect Model Hasil Common Effect Model Date: 05/11/18 Time: 06:20 C 21.16046 1.733410 12.20742 0.0000 IPM -25.74125 2.841429-9.059263 0.0000 FDI 9.11E-11 1.96E-11 4.654743 0.0000 X 0.044150 0.021606 2.043430 0.0425

More information

Corporate Governance and Banks Performance: An Empirical Study

Corporate Governance and Banks Performance: An Empirical Study OSR Journal of Business and Management (OSR-JBM) e-ssn: 2278-487X, p-ssn: 2319 7668 Corporate Governance and Banks Performance: An Empirical Study Naresh Kumar 1, Dr. Sudesh 2 1 (Senior Research Fellow,

More information

THE IMPACT OF BANKING RISKS ON THE CAPITAL OF COMMERCIAL BANKS IN LIBYA

THE IMPACT OF BANKING RISKS ON THE CAPITAL OF COMMERCIAL BANKS IN LIBYA THE IMPACT OF BANKING RISKS ON THE CAPITAL OF COMMERCIAL BANKS IN LIBYA Azeddin ARAB Kastamonu University, Turkey, Institute for Social Sciences, Department of Business Abstract: The objective of this

More information

9. Assessing the impact of the credit guarantee fund for SMEs in the field of agriculture - The case of Hungary

9. Assessing the impact of the credit guarantee fund for SMEs in the field of agriculture - The case of Hungary Lengyel I. Vas Zs. (eds) 2016: Economics and Management of Global Value Chains. University of Szeged, Doctoral School in Economics, Szeged, pp. 143 154. 9. Assessing the impact of the credit guarantee

More information

Docket Revenue Decoupling Mechanism Proposal Responses to Division Data Requests 1-19

Docket Revenue Decoupling Mechanism Proposal Responses to Division Data Requests 1-19 Thomas R. Teehan Senior Counsel April 29, 2011 VIA HAND DELIVERY & ELECTRONIC MAIL Luly E. Massaro, Commission Clerk Rhode Island Public Utilities Commission 89 Jefferson Boulevard Warwick, RI 02888 RE:

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

Five Things You Should Know About Quantile Regression

Five Things You Should Know About Quantile Regression Five Things You Should Know About Quantile Regression Robert N. Rodriguez and Yonggang Yao SAS Institute #analyticsx Copyright 2016, SAS Institute Inc. All rights reserved. Quantile regression brings the

More information

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly.

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. The MEANS Procedure Variable Mean Std Dev Minimum Maximum Skewness ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ

More information

Homework 0 Key (not to be handed in) due? Jan. 10

Homework 0 Key (not to be handed in) due? Jan. 10 Homework 0 Key (not to be handed in) due? Jan. 10 The results of running diamond.sas is listed below: Note: I did slightly reduce the size of some of the graphs so that they would fit on the page. The

More information

Small Sample Performance of Instrumental Variables Probit Estimators: A Monte Carlo Investigation

Small Sample Performance of Instrumental Variables Probit Estimators: A Monte Carlo Investigation Small Sample Performance of Instrumental Variables Probit : A Monte Carlo Investigation July 31, 2008 LIML Newey Small Sample Performance? Goals Equations Regressors and Errors Parameters Reduced Form

More information

Econometrics and Economic Data

Econometrics and Economic Data Econometrics and Economic Data Chapter 1 What is a regression? By using the regression model, we can evaluate the magnitude of change in one variable due to a certain change in another variable. For example,

More information

CHAPTER 7 MULTIPLE REGRESSION

CHAPTER 7 MULTIPLE REGRESSION CHAPTER 7 MULTIPLE REGRESSION ANSWERS TO PROBLEMS AND CASES 5. Y = 7.5 + 3(0) - 1.(7) = -17.88 6. a. A correlation matrix displays the correlation coefficients between every possible pair of variables

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

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and Paper PH100 Relationship between Total charges and Reimbursements in Outpatient Visits Using SAS GLIMMIX Chakib Battioui, University of Louisville, Louisville, KY ABSTRACT The purpose of this paper is

More information

The Simple Regression Model

The Simple Regression Model Chapter 2 Wooldridge: Introductory Econometrics: A Modern Approach, 5e Definition of the simple linear regression model Explains variable in terms of variable Intercept Slope parameter Dependent variable,

More information

ARIMA ANALYSIS WITH INTERVENTIONS / OUTLIERS

ARIMA ANALYSIS WITH INTERVENTIONS / OUTLIERS TASK Run intervention analysis on the price of stock M: model a function of the price as ARIMA with outliers and interventions. SOLUTION The document below is an abridged version of the solution provided

More information

> attach(grocery) > boxplot(sales~discount, ylab="sales",xlab="discount")

> attach(grocery) > boxplot(sales~discount, ylab=sales,xlab=discount) Example of More than 2 Categories, and Analysis of Covariance Example > attach(grocery) > boxplot(sales~discount, ylab="sales",xlab="discount") Sales 160 200 240 > tapply(sales,discount,mean) 10.00% 15.00%

More information

Variance clustering. Two motivations, volatility clustering, and implied volatility

Variance clustering. Two motivations, volatility clustering, and implied volatility Variance modelling The simplest assumption for time series is that variance is constant. Unfortunately that assumption is often violated in actual data. In this lecture we look at the implications of time

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Midterm GSB Honor Code: I pledge my honor that I have not violated the Honor Code during this examination.

More information

2SLS HATCO SPSS, STATA and SHAZAM. Example by Eddie Oczkowski. August 2001

2SLS HATCO SPSS, STATA and SHAZAM. Example by Eddie Oczkowski. August 2001 2SLS HATCO SPSS, STATA and SHAZAM Example by Eddie Oczkowski August 2001 This example illustrates how to use SPSS to estimate and evaluate a 2SLS latent variable model. The bulk of the example relates

More information

The Simple Regression Model

The Simple Regression Model Chapter 2 Wooldridge: Introductory Econometrics: A Modern Approach, 5e Definition of the simple linear regression model "Explains variable in terms of variable " Intercept Slope parameter Dependent var,

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

Risk Management. Risk: the quantifiable likelihood of loss or less-than-expected returns.

Risk Management. Risk: the quantifiable likelihood of loss or less-than-expected returns. ARCH/GARCH Models 1 Risk Management Risk: the quantifiable likelihood of loss or less-than-expected returns. In recent decades the field of financial risk management has undergone explosive development.

More information

Asian Journal of Empirical Research

Asian Journal of Empirical Research 2016 Asian Economic and Social Society. All rights reserved ISSN (P): 2306-983X, ISSN (E): 2224-4425 Volume 6, Issue 10 pp. 261-269 Asian Journal of Empirical Research http://www.aessweb.com/journals/5004

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

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

CHAPTER 5 DATA ANALYSIS OF LINTNER MODEL

CHAPTER 5 DATA ANALYSIS OF LINTNER MODEL CHAPTER 5 DATA ANALYSIS OF LINTNER MODEL In this chapter the important determinants of dividend payout as suggested by John Lintner in 1956 have been analysed. Lintner model is a basic model that incorporates

More information

Analysis of Dividend Policy Influence Factors of China s Listed Banks

Analysis of Dividend Policy Influence Factors of China s Listed Banks Open Journal of Social Sciences, 2016, 4, 272-278 Published Online March 2016 in SciRes. http://www.scirp.org/journal/jss http://dx.doi.org/10.4236/jss.2016.43034 Analysis of Dividend Policy Influence

More information

1.1 ANNUAL PRICE MODEL

1.1 ANNUAL PRICE MODEL 1.1 ANNUAL PRICE MODEL Annual ex-vessel price model is updated each year to take into account the recent changes in sea scallop markets both domestically and internationally. This model estimates the degree

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

Analysis of Variance in Matrix form

Analysis of Variance in Matrix form Analysis of Variance in Matrix form The ANOVA table sums of squares, SSTO, SSR and SSE can all be expressed in matrix form as follows. week 9 Multiple Regression A multiple regression model is a model

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

1.0 APPENDIX I ECONOMIC MODEL

1.0 APPENDIX I ECONOMIC MODEL 1.0 APPENDIX I ECONOMIC MODEL 1.1 ESTIMATION OF PRICES, COSTS, PROFITS AND NATIONAL BENEFITS The economic model includes an ex-vessel price equation, a cost function and a set of equations describing the

More information

Lottery Purchases and Taxable Spending: Is There a Substitution Effect?

Lottery Purchases and Taxable Spending: Is There a Substitution Effect? Lottery Purchases and Taxable Spending: Is There a Substitution Effect? Kaitlin Regan April 2004 I would like to thank my advisor, Professor John Carter, for his guidance and support throughout the course

More information

Openness and Inflation

Openness and Inflation Openness and Inflation Based on David Romer s Paper Openness and Inflation: Theory and Evidence ECON 5341 Vinko Kaurin Introduction Link between openness and inflation explored Basic OLS model: y = β 0

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

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

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

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

The relationship between external debt and foreign direct investment in D8 member countries ( )

The relationship between external debt and foreign direct investment in D8 member countries ( ) WALIA journal 30(S3): 18-22, 2014 Available online at www.waliaj.com ISSN 1026-3861 2014 WALIA The relationship between external debt and foreign direct investment in D8 member countries (1995-2011) Hossein

More information

Panel Regression of Out-of-the-Money S&P 500 Index Put Options Prices

Panel Regression of Out-of-the-Money S&P 500 Index Put Options Prices Panel Regression of Out-of-the-Money S&P 500 Index Put Options Prices Prakher Bajpai* (May 8, 2014) 1 Introduction In 1973, two economists, Myron Scholes and Fischer Black, developed a mathematical model

More information

Linear Regression with One Regressor

Linear Regression with One Regressor Linear Regression with One Regressor Michael Ash Lecture 9 Linear Regression with One Regressor Review of Last Time 1. The Linear Regression Model The relationship between independent X and dependent Y

More information

Vivek Raj Case Scenario

Vivek Raj Case Scenario Vivek Raj Case Scenario Vivek Raj is a quantitative research analyst in HSMC bank. He is checking whether there is any relationship between the rate of change in price of commodities and the rate of change

More information

CHAPTER 12 EXAMPLES: MONTE CARLO SIMULATION STUDIES

CHAPTER 12 EXAMPLES: MONTE CARLO SIMULATION STUDIES Examples: Monte Carlo Simulation Studies CHAPTER 12 EXAMPLES: MONTE CARLO SIMULATION STUDIES Monte Carlo simulation studies are often used for methodological investigations of the performance of statistical

More information

Available online at ScienceDirect. Procedia Economics and Finance 35 ( 2016 )

Available online at  ScienceDirect. Procedia Economics and Finance 35 ( 2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Economics and Finance 35 ( 2016 ) 241 248 7th International Economics & Business Management Conference, 5th & 6th October 2015 Panel Data

More information

Let us assume that we are measuring the yield of a crop plant on 5 different plots at 4 different observation times.

Let us assume that we are measuring the yield of a crop plant on 5 different plots at 4 different observation times. Mixed-effects models An introduction by Christoph Scherber Up to now, we have been dealing with linear models of the form where ß0 and ß1 are parameters of fixed value. Example: Let us assume that we are

More information

Applied Econometrics for Health Economists

Applied Econometrics for Health Economists Applied Econometrics for Health Economists Exercise 0 Preliminaries The data file hals1class.dta contains the following variables: age male white aglsch rheuma prheuma ownh breakhot tea teasug coffee age

More information

Market Approach A. Relationship to Appraisal Principles

Market Approach A. Relationship to Appraisal Principles Market Approach A. Relationship to Appraisal Principles 1. Supply and demand Prices are determined by negotiation between buyers and sellers o Buyers demand side o Sellers supply side At a specific time

More information

UJI COMMON EFFECT MODEL

UJI COMMON EFFECT MODEL UJI COMMON EFFECT MODEL Dependent Variable: LOG(TKI) Method: Panel Least Squares Date: 05/01/18 Time: 12:34 Sample: 2010 2016 Periods included: 7 Total panel (balanced) observations: 210 Variable Coefficient

More information

Basic Regression Analysis with Time Series Data

Basic Regression Analysis with Time Series Data with Time Series Data Chapter 10 Wooldridge: Introductory Econometrics: A Modern Approach, 5e The nature of time series data Temporal ordering of observations; may not be arbitrarily reordered Typical

More information

Non-linearities in Simple Regression

Non-linearities in Simple Regression Non-linearities in Simple Regression 1. Eample: Monthly Earnings and Years of Education In this tutorial, we will focus on an eample that eplores the relationship between total monthly earnings and years

More information

COINTEGRATION AND MARKET EFFICIENCY: AN APPLICATION TO THE CANADIAN TREASURY BILL MARKET. Soo-Bin Park* Carleton University, Ottawa, Canada K1S 5B6

COINTEGRATION AND MARKET EFFICIENCY: AN APPLICATION TO THE CANADIAN TREASURY BILL MARKET. Soo-Bin Park* Carleton University, Ottawa, Canada K1S 5B6 1 COINTEGRATION AND MARKET EFFICIENCY: AN APPLICATION TO THE CANADIAN TREASURY BILL MARKET Soo-Bin Park* Carleton University, Ottawa, Canada K1S 5B6 Abstract: In this study we examine if the spot and forward

More information

Monetary Economics Risk and Return, Part 2. Gerald P. Dwyer Fall 2015

Monetary Economics Risk and Return, Part 2. Gerald P. Dwyer Fall 2015 Monetary Economics Risk and Return, Part 2 Gerald P. Dwyer Fall 2015 Reading Malkiel, Part 2, Part 3 Malkiel, Part 3 Outline Returns and risk Overall market risk reduced over longer periods Individual

More information

Implied Volatility v/s Realized Volatility: A Forecasting Dimension

Implied Volatility v/s Realized Volatility: A Forecasting Dimension 4 Implied Volatility v/s Realized Volatility: A Forecasting Dimension 4.1 Introduction Modelling and predicting financial market volatility has played an important role for market participants as it enables

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay Midterm ChicagoBooth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

DATABASE AND RESEARCH METHODOLOGY

DATABASE AND RESEARCH METHODOLOGY CHAPTER III DATABASE AND RESEARCH METHODOLOGY The nature of the present study Direct Tax Reforms in India: A Comparative Study of Pre and Post-liberalization periods is such that it requires secondary

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

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

Lecture 5a: ARCH Models

Lecture 5a: ARCH Models Lecture 5a: ARCH Models 1 2 Big Picture 1. We use ARMA model for the conditional mean 2. We use ARCH model for the conditional variance 3. ARMA and ARCH model can be used together to describe both conditional

More information

The Effect of Exchange Rate Risk on Stock Returns in Kenya s Listed Financial Institutions

The Effect of Exchange Rate Risk on Stock Returns in Kenya s Listed Financial Institutions The Effect of Exchange Rate Risk on Stock Returns in Kenya s Listed Financial Institutions Loice Koskei School of Business & Economics, Africa International University,.O. Box 1670-30100 Eldoret, Kenya

More information

Brief Sketch of Solutions: Tutorial 2. 2) graphs. 3) unit root tests

Brief Sketch of Solutions: Tutorial 2. 2) graphs. 3) unit root tests Brief Sketch of Solutions: Tutorial 2 2) graphs LJAPAN DJAPAN 5.2.12 5.0.08 4.8.04 4.6.00 4.4 -.04 4.2 -.08 4.0 01 02 03 04 05 06 07 08 09 -.12 01 02 03 04 05 06 07 08 09 LUSA DUSA 7.4.12 7.3 7.2.08 7.1.04

More information

The Evidence for Differences in Risk for Fixed vs Mobile Telecoms For the Office of Communications (Ofcom)

The Evidence for Differences in Risk for Fixed vs Mobile Telecoms For the Office of Communications (Ofcom) The Evidence for Differences in Risk for Fixed vs Mobile Telecoms For the Office of Communications (Ofcom) November 2017 Project Team Dr. Richard Hern Marija Spasovska Aldo Motta NERA Economic Consulting

More information

DYNAMICS OF URBAN INFORMAL

DYNAMICS OF URBAN INFORMAL DYNAMICS OF URBAN INFORMAL EMPLOYMENT IN BANGLADESH Selim Raihan Professor of Economics, University of Dhaka and Executive Director, SANEM ICRIER Conference on Creating Jobs in South Asia 3-4 December

More information

CHAPTER 4 DATA ANALYSIS Data Hypothesis

CHAPTER 4 DATA ANALYSIS Data Hypothesis CHAPTER 4 DATA ANALYSIS 4.1. Data Hypothesis The hypothesis for each independent variable to express our expectations about the characteristic of each independent variable and the pay back performance

More information

Analysis of the Influence of the Annualized Rate of Rentability on the Unit Value of the Net Assets of the Private Administered Pension Fund NN

Analysis of the Influence of the Annualized Rate of Rentability on the Unit Value of the Net Assets of the Private Administered Pension Fund NN Year XVIII No. 20/2018 175 Analysis of the Influence of the Annualized Rate of Rentability on the Unit Value of the Net Assets of the Private Administered Pension Fund NN Constantin DURAC 1 1 University

More information

Effects of Relative Prices and Exchange Rates on Domestic Market Share of U.S. Red-Meat Utilization

Effects of Relative Prices and Exchange Rates on Domestic Market Share of U.S. Red-Meat Utilization Effects of Relative Prices and Exchange Rates on Domestic Market Share of U.S. Red-Meat Utilization Keithly Jones The author is an Agricultural Economist with the Animal Products Branch, Markets and Trade

More information

LAMPIRAN 1. Retribusi (ribu Rp)

LAMPIRAN 1. Retribusi (ribu Rp) LAMPIRAN 1 Kabupaten Kulonprogo Bantul Gunung Kidul Tahun Retribusi (ribu Rp) Obyek Wisata Wisatawan PDRB (juta Rp) 2001 6694566 8 227250 3486573.5 2002 7779217 11 211529 3630220.3 2003 9247557 7 190333

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

The Least Squares Regression Line

The Least Squares Regression Line The Least Squares Regression Line Section 5.3 Cathy Poliak, Ph.D. cathy@math.uh.edu Office hours: T Th 1:30 pm - 3:30 pm 620 PGH & 5:30 pm - 7:00 pm CASA Department of Mathematics University of Houston

More information

LAMPIRAN. A. Data. PAD (juta) INVESTASI (%) PDRB (juta) Kulon Progo. Bantul. Gunung Kidul. Sleman

LAMPIRAN. A. Data. PAD (juta) INVESTASI (%) PDRB (juta) Kulon Progo. Bantul. Gunung Kidul. Sleman 82 LAMPIRAN A. Data Kabupaten Kulon Progo Bantul Gunung Kidul Sleman Tahun PDRB (juta) PAD (juta) INVESTASI (%) TINGKAT PENGANGGURAN (%) 2007 4.455.556 33.129.460 0 4.34 2008 4.665.308 36.188.575 1.82

More information

Forecasting FTSE Index Using Global Stock Markets

Forecasting FTSE Index Using Global Stock Markets Forecasting FTSE Index Using Global Stock Markets Jose G. Vega College of Business Administration University of Texas San Antonio One UTSA Circle, San Antonio, TX 7849, USA Jan M. Smolarski (Corresponding

More information

Estimation Procedure for Parametric Survival Distribution Without Covariates

Estimation Procedure for Parametric Survival Distribution Without Covariates Estimation Procedure for Parametric Survival Distribution Without Covariates The maximum likelihood estimates of the parameters of commonly used survival distribution can be found by SAS. The following

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

Hierarchical Generalized Linear Models. Measurement Incorporated Hierarchical Linear Models Workshop

Hierarchical Generalized Linear Models. Measurement Incorporated Hierarchical Linear Models Workshop Hierarchical Generalized Linear Models Measurement Incorporated Hierarchical Linear Models Workshop Hierarchical Generalized Linear Models So now we are moving on to the more advanced type topics. To begin

More information

Lampiran 1 Lampiran 1 Data Keuangan Bank konvensional

Lampiran 1 Lampiran 1 Data Keuangan Bank konvensional Lampiran 1 Lampiran 1 Data Keuangan Bank konvensional BANK YEAR Z-Score TOTAL ASET (milyar rupiah) ROA (%) NPL (%) BI RATE (%) KURS (rupiah) BNI 1.9 5.51.9 1.9.5 919.5 11 7.71 99.5.9.17 915.7 1 7.7 333.3.9.

More information

CHAPTER 11 Regression with a Binary Dependent Variable. Kazu Matsuda IBEC PHBU 430 Econometrics

CHAPTER 11 Regression with a Binary Dependent Variable. Kazu Matsuda IBEC PHBU 430 Econometrics CHAPTER 11 Regression with a Binary Dependent Variable Kazu Matsuda IBEC PHBU 430 Econometrics Mortgage Application Example Two people, identical but for their race, walk into a bank and apply for a mortgage,

More information

Does Manufacturing Matter for Economic Growth in the Era of Globalization? Online Supplement

Does Manufacturing Matter for Economic Growth in the Era of Globalization? Online Supplement Does Manufacturing Matter for Economic Growth in the Era of Globalization? Results from Growth Curve Models of Manufacturing Share of Employment (MSE) To formally test trends in manufacturing share of

More information

University of Zürich, Switzerland

University of Zürich, Switzerland University of Zürich, Switzerland RE - general asset features The inclusion of real estate assets in a portfolio has proven to bring diversification benefits both for homeowners [Mahieu, Van Bussel 1996]

More information

Homework Assignment Section 3

Homework Assignment Section 3 Homework Assignment Section 3 Tengyuan Liang Business Statistics Booth School of Business Problem 1 A company sets different prices for a particular stereo system in eight different regions of the country.

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

Passing the repeal of the carbon tax back to wholesale electricity prices

Passing the repeal of the carbon tax back to wholesale electricity prices University of Wollongong Research Online National Institute for Applied Statistics Research Australia Working Paper Series Faculty of Engineering and Information Sciences 2014 Passing the repeal of the

More information

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00 Two Hours MATH38191 Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER STATISTICAL MODELLING IN FINANCE 22 January 2015 14:00 16:00 Answer ALL TWO questions

More information

Panel Data with Binary Dependent Variables

Panel Data with Binary Dependent Variables Essex Summer School in Social Science Data Analysis Panel Data Analysis for Comparative Research Panel Data with Binary Dependent Variables Christopher Adolph Department of Political Science and Center

More information

9. Logit and Probit Models For Dichotomous Data

9. Logit and Probit Models For Dichotomous Data Sociology 740 John Fox Lecture Notes 9. Logit and Probit Models For Dichotomous Data Copyright 2014 by John Fox Logit and Probit Models for Dichotomous Responses 1 1. Goals: I To show how models similar

More information