SlideShare a Scribd company logo
Multiple Regression Analysis
Võ Đức Hoàng Vũ
University of Economics HCMC
June 2015
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 1 / 1
Estimation
The model is : y = β0 + β1x1 + β2x2 + . . . + βkxk
β0 is still the intercept
β1 to βk all called slope parameters
u is still the error term (or disturbance)
Still need to make a zero conditional mean assumption, so now
assume that E(u|x1, x2, . . . , xk) = 0
Still minimizing the sum of squared residuals, so have k + 1 first
order conditions
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 2 / 1
Interpreting Multiple Regression
ˆβ0 + ˆβ1x1 + . . . + ˆβkxk, so
∆ˆy = ∆ˆβ1x1 + ∆ˆβ2x2 + . . . + ∆ˆβkxk,
so holding x2, . . . , xk fixed implies that ∆ˆy = ∆ˆβ1x1, that is
each β has a ceteris paribus interpretation.
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 3 / 1
"Partialling Out" Interpretation
Consider the case where k = 2, i.e.
ˆy = ˆβ0 + ˆβ1x1 + ˆβ2x2, then
ˆβ1 = ( ˆri1yi )/ ˆr2
i1, where ˆri1 are the residuals from the
estimated regression ˆx1 = ˆγ0 + ˆγ2x2
Previous equation implies that regressing y on x1 and x2 gives
same effect of x1 as regressing y on residuals from a regression
of x1 on x2.
This means only the part of xi1 that is uncorrelated with xi2 are
being related to yi so we’re estimating the effect of x1 on y after
x2 has been "partialled out".
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 4 / 1
Simple vs Multiple Regression Estimate
Compare the simple regression ˜y = ˜β0 + ˜β1x1 with the multiple
regression haty = ˆβ0 + ˆβ1x1 + ˆβ2x2
Generally, ˜β1 = ˆβ1 unless: ˆβ2 = 0 (i.e. no partial effect of x2) OR
x1 and x2 are uncorrelated in the sample
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 5 / 1
Goodness-of-fit
We can think of each observation as being made up of an
explained part, and an unexplained part - yi = ˆyi + ˆui - We then
define the following:
(yi − ¯y)2
is the total sum of squares (SST)
(ˆyi − ¯y)2
is the explained sum of squares (SSE)
ˆu2
i is the residual sum of squares (SSR)
Then SST = SSE + SSR
How do we think about how well our sample regression line fits
our sample data?
Can compute the fraction of the total sum of squares (SST) that
is explained by the model, call this the R-squared of regression
R2
= SSE/SST = 1 − SSR/SST
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 6 / 1
Goodness-of-fit (cont)
We can also think of R2
as being equal to the squared
correlation coefficient between the actual yi and the value ˆyi
R2
=
( (yi − ¯y)(ˆyi − ¯ˆy))2
( (yi − ¯y)2)( (ˆyi − ¯ˆy)2)
R2
can never decrease when another independent variable is
added to regression, and usually will increase
Because R2
will usually increase with the number of independent
variables, it is not a good way to compare models.
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 7 / 1
Assumption for Unbiasedness
Population model is linear in parameters:
y = β0 + β1x1 + β2x2 + . . . + βkxk + u
We can use a random sample of size
n, {(xi1, xi2, . . . , xik, yi ) : i = 1, 2, . . . , n}, from the population
model, so that the sample model is
yi = β0 + β1xi1 + β2xi2 + . . . + βkxik + ui
E(u|x1, x2, . . . , xk) = 0, implying that all of the explanatory
variables are exogenous.
None of the x’s is constant, and there are no exact linear
relationships among them.
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 8 / 1
Too Many or Too Few Variables
What happens if we include variables in our specification that
don’t belong?
There is no effect on our parameter estimate, and OLS remains
unbiased
What if we exclude a variable from our specification that does
belong?
OLS will usually be biased.
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 9 / 1
Omitted Variable Bias
Suppose the true model is given as
y = β0 + β1x1 + β2x2 + u, but we estimate ˜y = + ˜β1x1 + u, then
˜β1 =
(xi1 − ¯x1)yi
(xi1 − ¯x1)2
Recall the true model, so that yi = β0 + β1xi1 + β2xi2 + ui , so the
numerator becomes
(xi1 − ¯x1)(β0 + β1xi1 + β2xi2 + ui ) =
β1 (xi1 − ¯x1)2
+ β2 (xi1 − ¯x1)xi2 + (xi1 − ¯x)ui
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 10 / 1
Omitted Variable Bias (cont)
˜β = β1 + β2
(xi1 − ¯x1)xi2
(xi1 − ¯x1)2
+
(xi1 − ¯x1)ui
(xi1 − ¯x1)2
since E(ui ) = 0, taking expectations we have
E( ˜β1) = β1 + β2
(xi1 − ¯x1)xi2
(xi1 − ¯x1)2
Consider the regression of x2 on x1
˜x2 = ˜δ0 + ˜δ1x1 then ˜δ1 =
(xi1 − ¯x1)xi2
(xi1 − ¯x1)2
so E(˜β1) = β1 + β2
˜δ1
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 11 / 1
Summary of Direction of Bias
Corr(x1, x2) > 0 Corr(x1, x2) < 0
β2 > 0 Positive bias Negative bias
β2 < 0 Negative bias Positive bias
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 12 / 1
Omitted Variable Bias Summary
Two cases where bias is equal to zero
β2 = 0 that is x2 doesn’t really bebong in model
x1 and x2 are uncorrelated in the sample
If correlation between x2, x1 and x2, y is the same direction, bias
will be positive
If correlation between x2, x1 and x2, y is the opposite direction,
bias will be negative
Technically, can only sign the bias for the more general case if al
of the included x’s are uncorrelated.
Typpically, then, we work through the bias assuming the x’s are
uncorrelated, as a useful guide even if this assumption is not
strictly true.
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 13 / 1
Variance of the OLS Estimators
Now we know that the sampling distribution of our estimate is
centered around the true parameter
Want to think about how spread out this distribution is
Much easier to think about this variance under an additional
assumption, so
Assume Var(u|x1, x2, . . . , xk) = σ2
(Homoskedasticity)
Let xxx stand for (x1, x2, . . . , xk)
Assuming that Var(u|x) = σ2
also implies that Var(y|x) = σ2
The 4 assumptions for unbiasedness, plus this homoskedasticity
assumption are known as the Gauss-Markov assumptions
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 14 / 1
Variance of OLS (cont.)
Given the Gauss-Markov assumptions
Var( ˆβj) =
σ2
SSTj(1 − R2
j )
, where
SSTj = (xij − ¯xj)2
and R2
j is the R2
from
regressioing xj on all other x’s
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 15 / 1
Components of OLS Variances
The error variance: a larger σ2
implies a larger variance for the
OLS estimators
The total sample variation: a larger SSTj implies a smaller
variance for the estimators
Linear relationships among the independent variables: a larger
R2
j implies a larger variance for the estimators
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 16 / 1
Misspecified Models
Consider again the misspecified model
˜y = ˜β0 + ˜β1x1, so that Var( ˜β1) =
σ2
SST1
Thus, Var( ˜β1) < Var( ˆβ1) unless x1 and x2 are
uncorrelated, then they’re the same
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 17 / 1
Misspecified Models (cont.)
While the variance of the estimator is smaller for the misspecified
model, unless β2 = 0 the misspecified model is biased
As the sample size grows, the variance of each estimator shrinks
to zero, making the variance difference less important
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 18 / 1
Estimating the Error Variance
We don’t know what the error variance, σ2
, is, because we don’t
observe the errors, ui
What we observe are the residuals, ˆui
We can use the residuals to form an estimate of the error
variance
ˆσ2
= ( ˆu2
i )/(n − k − 1) ≡ SSR/df
thus, se(ˆβj ) = ˆσ/[SSTj (1 − R2
j )]1/2
df = n − (k + 1)
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 19 / 1
The Gauss-Markov Theorem
Given our 5 Gauss-Markov Assumption it can be shown that
OLS is "BLUE"
Best
Linear
Unbiased
Estimator
Thus, if the assumptions hold, use OLS
Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 20 / 1

More Related Content

What's hot

Econometrics ch2
Econometrics ch2Econometrics ch2
Econometrics ch2
Baterdene Batchuluun
 
ICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRI
ICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRIICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRI
ICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRI
International Food Policy Research Institute- South Asia Office
 
Chap5(the open economy)
Chap5(the open economy)Chap5(the open economy)
Chap5(the open economy)
Cambodian Mekong University
 
Econometrics ch11
Econometrics ch11Econometrics ch11
Econometrics ch11
Baterdene Batchuluun
 
Ols by hiron
Ols by hironOls by hiron
Ols by hiron
mrhasibecon
 
Balance of Payment, Exchange rate Determination, Internal and External Equili...
Balance of Payment, Exchange rate Determination, Internal and External Equili...Balance of Payment, Exchange rate Determination, Internal and External Equili...
Balance of Payment, Exchange rate Determination, Internal and External Equili...
Farhana Afroj
 
Macroeconomics chapter 18
Macroeconomics chapter 18Macroeconomics chapter 18
Macroeconomics chapter 18
MDevSNPT
 
The solow swan model
The solow swan modelThe solow swan model
The solow swan model
Gurudayalkumar
 
MACROECONOMICS-CH15
MACROECONOMICS-CH15MACROECONOMICS-CH15
MACROECONOMICS-CH15
kkjjkevin03
 
Economic policy course
Economic policy courseEconomic policy course
Economic policy course
Mahmoud Fath-Allah
 
Multicolinearity
MulticolinearityMulticolinearity
Multicolinearity
Pawan Kawan
 
Copy of bab elastisitas.baru
Copy of bab elastisitas.baruCopy of bab elastisitas.baru
Copy of bab elastisitas.baru
mahasiswaunida
 
Gregory mankiw macroeconomic 7th edition chapter (15)
Gregory mankiw macroeconomic 7th edition chapter  (15)Gregory mankiw macroeconomic 7th edition chapter  (15)
Gregory mankiw macroeconomic 7th edition chapter (15)
Kyaw Thiha
 
Econometrics ch3
Econometrics ch3Econometrics ch3
Econometrics ch3
Baterdene Batchuluun
 
Matematika bisnis7
Matematika bisnis7Matematika bisnis7
Matematika bisnis7
Amri Sandy
 
Todaro & Smith economic development_ch03_Mushfiqul Haque Mukit
Todaro & Smith economic development_ch03_Mushfiqul Haque MukitTodaro & Smith economic development_ch03_Mushfiqul Haque Mukit
Todaro & Smith economic development_ch03_Mushfiqul Haque Mukit
Mohammad Mushfiqul Haque Mukit
 
Heteroscedasticity
HeteroscedasticityHeteroscedasticity
Heteroscedasticity
Muhammad Ali
 
Ch8 slides
Ch8 slidesCh8 slides
Ch8 slides
fentaw leykun
 
Cob-Web model 11-3-15.pptx
Cob-Web model 11-3-15.pptxCob-Web model 11-3-15.pptx
Cob-Web model 11-3-15.pptx
SudhakarReddy630686
 
Heteroscedasticity
HeteroscedasticityHeteroscedasticity
Heteroscedasticity
Madurai Kamaraj University
 

What's hot (20)

Econometrics ch2
Econometrics ch2Econometrics ch2
Econometrics ch2
 
ICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRI
ICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRIICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRI
ICAR-IFPRI- Instrumental Variable Regression- Devesh Roy, IFPRI
 
Chap5(the open economy)
Chap5(the open economy)Chap5(the open economy)
Chap5(the open economy)
 
Econometrics ch11
Econometrics ch11Econometrics ch11
Econometrics ch11
 
Ols by hiron
Ols by hironOls by hiron
Ols by hiron
 
Balance of Payment, Exchange rate Determination, Internal and External Equili...
Balance of Payment, Exchange rate Determination, Internal and External Equili...Balance of Payment, Exchange rate Determination, Internal and External Equili...
Balance of Payment, Exchange rate Determination, Internal and External Equili...
 
Macroeconomics chapter 18
Macroeconomics chapter 18Macroeconomics chapter 18
Macroeconomics chapter 18
 
The solow swan model
The solow swan modelThe solow swan model
The solow swan model
 
MACROECONOMICS-CH15
MACROECONOMICS-CH15MACROECONOMICS-CH15
MACROECONOMICS-CH15
 
Economic policy course
Economic policy courseEconomic policy course
Economic policy course
 
Multicolinearity
MulticolinearityMulticolinearity
Multicolinearity
 
Copy of bab elastisitas.baru
Copy of bab elastisitas.baruCopy of bab elastisitas.baru
Copy of bab elastisitas.baru
 
Gregory mankiw macroeconomic 7th edition chapter (15)
Gregory mankiw macroeconomic 7th edition chapter  (15)Gregory mankiw macroeconomic 7th edition chapter  (15)
Gregory mankiw macroeconomic 7th edition chapter (15)
 
Econometrics ch3
Econometrics ch3Econometrics ch3
Econometrics ch3
 
Matematika bisnis7
Matematika bisnis7Matematika bisnis7
Matematika bisnis7
 
Todaro & Smith economic development_ch03_Mushfiqul Haque Mukit
Todaro & Smith economic development_ch03_Mushfiqul Haque MukitTodaro & Smith economic development_ch03_Mushfiqul Haque Mukit
Todaro & Smith economic development_ch03_Mushfiqul Haque Mukit
 
Heteroscedasticity
HeteroscedasticityHeteroscedasticity
Heteroscedasticity
 
Ch8 slides
Ch8 slidesCh8 slides
Ch8 slides
 
Cob-Web model 11-3-15.pptx
Cob-Web model 11-3-15.pptxCob-Web model 11-3-15.pptx
Cob-Web model 11-3-15.pptx
 
Heteroscedasticity
HeteroscedasticityHeteroscedasticity
Heteroscedasticity
 

Viewers also liked

multiple linear reggression model
multiple linear reggression modelmultiple linear reggression model
multiple linear reggression model
OmarSalih
 
Analysis of Negative Interest Rates in America
Analysis of Negative Interest Rates in AmericaAnalysis of Negative Interest Rates in America
Analysis of Negative Interest Rates in America
Emilio José Calle Celi
 
Advanced microeconometric project
Advanced microeconometric projectAdvanced microeconometric project
Advanced microeconometric project
LaurentCyrus
 
Econometrics Project - What are the determinants of giving in Uganda
Econometrics Project - What are the determinants of giving in UgandaEconometrics Project - What are the determinants of giving in Uganda
Econometrics Project - What are the determinants of giving in Uganda
Daniel Drummond
 
Econometrics Final Project
Econometrics Final ProjectEconometrics Final Project
Econometrics Final Project
Aliaksey Narko
 
Granger Causality
Granger CausalityGranger Causality
Granger Causality
Gaetan Lion
 
Auto Correlation Presentation
Auto Correlation PresentationAuto Correlation Presentation
Auto Correlation Presentation
Irfan Hussain
 
Granger causality test
Granger causality testGranger causality test
Granger causality test
Suniya Sheikh
 
Multiple regression
Multiple regressionMultiple regression
Multiple regression
Venkata Reddy Konasani
 
Multiple regression presentation
Multiple regression presentationMultiple regression presentation
Multiple regression presentation
Carlo Magno
 
Multiple Linear Regression II and ANOVA I
Multiple Linear Regression II and ANOVA IMultiple Linear Regression II and ANOVA I
Multiple Linear Regression II and ANOVA I
James Neill
 
Econometrics Lecture Notes : Chapter 1
Econometrics Lecture Notes : Chapter 1Econometrics Lecture Notes : Chapter 1
Econometrics Lecture Notes : Chapter 1
Dongseo University
 
Granger causality testing
Granger causality testingGranger causality testing
Granger causality testing
ThomasReader
 
Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...
Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...
Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...
Muhammad Ali
 
Econometrics lecture 1st
Econometrics lecture 1stEconometrics lecture 1st
Econometrics lecture 1st
Ishaq Ahmad
 

Viewers also liked (15)

multiple linear reggression model
multiple linear reggression modelmultiple linear reggression model
multiple linear reggression model
 
Analysis of Negative Interest Rates in America
Analysis of Negative Interest Rates in AmericaAnalysis of Negative Interest Rates in America
Analysis of Negative Interest Rates in America
 
Advanced microeconometric project
Advanced microeconometric projectAdvanced microeconometric project
Advanced microeconometric project
 
Econometrics Project - What are the determinants of giving in Uganda
Econometrics Project - What are the determinants of giving in UgandaEconometrics Project - What are the determinants of giving in Uganda
Econometrics Project - What are the determinants of giving in Uganda
 
Econometrics Final Project
Econometrics Final ProjectEconometrics Final Project
Econometrics Final Project
 
Granger Causality
Granger CausalityGranger Causality
Granger Causality
 
Auto Correlation Presentation
Auto Correlation PresentationAuto Correlation Presentation
Auto Correlation Presentation
 
Granger causality test
Granger causality testGranger causality test
Granger causality test
 
Multiple regression
Multiple regressionMultiple regression
Multiple regression
 
Multiple regression presentation
Multiple regression presentationMultiple regression presentation
Multiple regression presentation
 
Multiple Linear Regression II and ANOVA I
Multiple Linear Regression II and ANOVA IMultiple Linear Regression II and ANOVA I
Multiple Linear Regression II and ANOVA I
 
Econometrics Lecture Notes : Chapter 1
Econometrics Lecture Notes : Chapter 1Econometrics Lecture Notes : Chapter 1
Econometrics Lecture Notes : Chapter 1
 
Granger causality testing
Granger causality testingGranger causality testing
Granger causality testing
 
Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...
Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...
Econometrics notes (Introduction, Simple Linear regression, Multiple linear r...
 
Econometrics lecture 1st
Econometrics lecture 1stEconometrics lecture 1st
Econometrics lecture 1st
 

Similar to Chapter3 econometrics

Talk 4
Talk 4Talk 4
Econometrics- lecture 10 and 11
Econometrics- lecture 10 and 11Econometrics- lecture 10 and 11
Econometrics- lecture 10 and 11
Almaszabeen Badekhan
 
regresi linier dengan dua variabel - ekonometrika
regresi linier dengan dua variabel - ekonometrikaregresi linier dengan dua variabel - ekonometrika
regresi linier dengan dua variabel - ekonometrika
RETWANDO
 
functionalform2up.pdf
functionalform2up.pdffunctionalform2up.pdf
functionalform2up.pdf
Daniel181688
 
Logistics regression
Logistics regressionLogistics regression
Logistics regression
SALWAidrissiakhannou
 
Estimation rs
Estimation rsEstimation rs
Estimation rs
meharahutsham
 
presentazione
presentazionepresentazione
presentazione
Alessandro Zanatta
 
Risk and Risk Aversion FM
Risk and Risk Aversion FMRisk and Risk Aversion FM
Risk and Risk Aversion FM
FellowBuddy.com
 
Chapter6
Chapter6Chapter6
Chapter6
Vu Vo
 
Economics Assignment Sample Problems Set 6 with Solutions
Economics Assignment Sample Problems Set 6 with SolutionsEconomics Assignment Sample Problems Set 6 with Solutions
Economics Assignment Sample Problems Set 6 with Solutions
Hebrew Johnson
 
The linear regression model: Theory and Application
The linear regression model: Theory and ApplicationThe linear regression model: Theory and Application
The linear regression model: Theory and Application
University of Salerno
 
Calculus 05-6 ccccccccccccccccccccccc.ppsx
Calculus 05-6 ccccccccccccccccccccccc.ppsxCalculus 05-6 ccccccccccccccccccccccc.ppsx
Calculus 05-6 ccccccccccccccccccccccc.ppsx
MohamedAli899919
 
Reg n corr
Reg n corrReg n corr
Reg n corr
NamVuTran1
 
Problems and solutions_4
Problems and solutions_4Problems and solutions_4
Problems and solutions_4
Magisterio nacional
 
Perspective in Informatics 3 - Assignment 1 - Answer Sheet
Perspective in Informatics 3 - Assignment 1 - Answer SheetPerspective in Informatics 3 - Assignment 1 - Answer Sheet
Perspective in Informatics 3 - Assignment 1 - Answer Sheet
Hoang Nguyen Phong
 
WEEK 1 Introduction.pdf
WEEK 1 Introduction.pdfWEEK 1 Introduction.pdf
WEEK 1 Introduction.pdf
ploet
 
Econometrics homework help
Econometrics homework helpEconometrics homework help
Econometrics homework help
Mark Austin
 
Slides edf-2
Slides edf-2Slides edf-2
Slides edf-2
Arthur Charpentier
 
Transformation of random variables
Transformation of random variablesTransformation of random variables
Transformation of random variables
Tarun Gehlot
 
Algebraic techniques in combinatorics
Algebraic techniques in combinatoricsAlgebraic techniques in combinatorics
Algebraic techniques in combinatorics
Vui Lên Bạn Nhé
 

Similar to Chapter3 econometrics (20)

Talk 4
Talk 4Talk 4
Talk 4
 
Econometrics- lecture 10 and 11
Econometrics- lecture 10 and 11Econometrics- lecture 10 and 11
Econometrics- lecture 10 and 11
 
regresi linier dengan dua variabel - ekonometrika
regresi linier dengan dua variabel - ekonometrikaregresi linier dengan dua variabel - ekonometrika
regresi linier dengan dua variabel - ekonometrika
 
functionalform2up.pdf
functionalform2up.pdffunctionalform2up.pdf
functionalform2up.pdf
 
Logistics regression
Logistics regressionLogistics regression
Logistics regression
 
Estimation rs
Estimation rsEstimation rs
Estimation rs
 
presentazione
presentazionepresentazione
presentazione
 
Risk and Risk Aversion FM
Risk and Risk Aversion FMRisk and Risk Aversion FM
Risk and Risk Aversion FM
 
Chapter6
Chapter6Chapter6
Chapter6
 
Economics Assignment Sample Problems Set 6 with Solutions
Economics Assignment Sample Problems Set 6 with SolutionsEconomics Assignment Sample Problems Set 6 with Solutions
Economics Assignment Sample Problems Set 6 with Solutions
 
The linear regression model: Theory and Application
The linear regression model: Theory and ApplicationThe linear regression model: Theory and Application
The linear regression model: Theory and Application
 
Calculus 05-6 ccccccccccccccccccccccc.ppsx
Calculus 05-6 ccccccccccccccccccccccc.ppsxCalculus 05-6 ccccccccccccccccccccccc.ppsx
Calculus 05-6 ccccccccccccccccccccccc.ppsx
 
Reg n corr
Reg n corrReg n corr
Reg n corr
 
Problems and solutions_4
Problems and solutions_4Problems and solutions_4
Problems and solutions_4
 
Perspective in Informatics 3 - Assignment 1 - Answer Sheet
Perspective in Informatics 3 - Assignment 1 - Answer SheetPerspective in Informatics 3 - Assignment 1 - Answer Sheet
Perspective in Informatics 3 - Assignment 1 - Answer Sheet
 
WEEK 1 Introduction.pdf
WEEK 1 Introduction.pdfWEEK 1 Introduction.pdf
WEEK 1 Introduction.pdf
 
Econometrics homework help
Econometrics homework helpEconometrics homework help
Econometrics homework help
 
Slides edf-2
Slides edf-2Slides edf-2
Slides edf-2
 
Transformation of random variables
Transformation of random variablesTransformation of random variables
Transformation of random variables
 
Algebraic techniques in combinatorics
Algebraic techniques in combinatoricsAlgebraic techniques in combinatorics
Algebraic techniques in combinatorics
 

Recently uploaded

The state of welfare Resolution Foundation Event
The state of welfare Resolution Foundation EventThe state of welfare Resolution Foundation Event
The state of welfare Resolution Foundation Event
ResolutionFoundation
 
OAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptx
OAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptxOAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptx
OAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptx
hiddenlevers
 
Who Is Abhay Bhutada, MD of Poonawalla Fincorp
Who Is Abhay Bhutada, MD of Poonawalla FincorpWho Is Abhay Bhutada, MD of Poonawalla Fincorp
Who Is Abhay Bhutada, MD of Poonawalla Fincorp
beulahfernandes8
 
^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...
^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...
^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...
mayaclinic18
 
5 Tips for Creating Standard Financial Reports
5 Tips for Creating Standard Financial Reports5 Tips for Creating Standard Financial Reports
5 Tips for Creating Standard Financial Reports
EasyReports
 
一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查
一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查
一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查
taqyea
 
How Does CRISIL Evaluate Lenders in India for Credit Ratings
How Does CRISIL Evaluate Lenders in India for Credit RatingsHow Does CRISIL Evaluate Lenders in India for Credit Ratings
How Does CRISIL Evaluate Lenders in India for Credit Ratings
Shaheen Kumar
 
2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf
Neal Brewster
 
Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...
Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...
Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...
AntoniaOwensDetwiler
 
STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...
STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...
STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...
sameer shah
 
Using Online job postings and survey data to understand labour market trends
Using Online job postings and survey data to understand labour market trendsUsing Online job postings and survey data to understand labour market trends
Using Online job postings and survey data to understand labour market trends
Labour Market Information Council | Conseil de l’information sur le marché du travail
 
1.2 Business Ideas Business Ideas Busine
1.2 Business Ideas Business Ideas Busine1.2 Business Ideas Business Ideas Busine
1.2 Business Ideas Business Ideas Busine
Lawrence101
 
How Non-Banking Financial Companies Empower Startups With Venture Debt Financing
How Non-Banking Financial Companies Empower Startups With Venture Debt FinancingHow Non-Banking Financial Companies Empower Startups With Venture Debt Financing
How Non-Banking Financial Companies Empower Startups With Venture Debt Financing
Vighnesh Shashtri
 
Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...
Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...
Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...
bresciafarid233
 
falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...
falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...
falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...
Falcon Invoice Discounting
 
Economic Risk Factor Update: June 2024 [SlideShare]
Economic Risk Factor Update: June 2024 [SlideShare]Economic Risk Factor Update: June 2024 [SlideShare]
Economic Risk Factor Update: June 2024 [SlideShare]
Commonwealth
 
Discover the Future of Dogecoin with Our Comprehensive Guidance
Discover the Future of Dogecoin with Our Comprehensive GuidanceDiscover the Future of Dogecoin with Our Comprehensive Guidance
Discover the Future of Dogecoin with Our Comprehensive Guidance
36 Crypto
 
Unlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptx
Unlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptxUnlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptx
Unlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptx
cosmo-soil
 
Independent Study - College of Wooster Research (2023-2024)
Independent Study - College of Wooster Research (2023-2024)Independent Study - College of Wooster Research (2023-2024)
Independent Study - College of Wooster Research (2023-2024)
AntoniaOwensDetwiler
 
Fabular Frames and the Four Ratio Problem
Fabular Frames and the Four Ratio ProblemFabular Frames and the Four Ratio Problem
Fabular Frames and the Four Ratio Problem
Majid Iqbal
 

Recently uploaded (20)

The state of welfare Resolution Foundation Event
The state of welfare Resolution Foundation EventThe state of welfare Resolution Foundation Event
The state of welfare Resolution Foundation Event
 
OAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptx
OAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptxOAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptx
OAT_RI_Ep20 WeighingTheRisks_May24_Trade Wars.pptx
 
Who Is Abhay Bhutada, MD of Poonawalla Fincorp
Who Is Abhay Bhutada, MD of Poonawalla FincorpWho Is Abhay Bhutada, MD of Poonawalla Fincorp
Who Is Abhay Bhutada, MD of Poonawalla Fincorp
 
^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...
^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...
^%$Zone1:+971)581248768’][* Legit & Safe #Abortion #Pills #For #Sale In #Duba...
 
5 Tips for Creating Standard Financial Reports
5 Tips for Creating Standard Financial Reports5 Tips for Creating Standard Financial Reports
5 Tips for Creating Standard Financial Reports
 
一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查
一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查
一比一原版美国新罕布什尔大学(unh)毕业证学历认证真实可查
 
How Does CRISIL Evaluate Lenders in India for Credit Ratings
How Does CRISIL Evaluate Lenders in India for Credit RatingsHow Does CRISIL Evaluate Lenders in India for Credit Ratings
How Does CRISIL Evaluate Lenders in India for Credit Ratings
 
2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf
 
Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...
Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...
Independent Study - College of Wooster Research (2023-2024) FDI, Culture, Glo...
 
STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...
STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...
STREETONOMICS: Exploring the Uncharted Territories of Informal Markets throug...
 
Using Online job postings and survey data to understand labour market trends
Using Online job postings and survey data to understand labour market trendsUsing Online job postings and survey data to understand labour market trends
Using Online job postings and survey data to understand labour market trends
 
1.2 Business Ideas Business Ideas Busine
1.2 Business Ideas Business Ideas Busine1.2 Business Ideas Business Ideas Busine
1.2 Business Ideas Business Ideas Busine
 
How Non-Banking Financial Companies Empower Startups With Venture Debt Financing
How Non-Banking Financial Companies Empower Startups With Venture Debt FinancingHow Non-Banking Financial Companies Empower Startups With Venture Debt Financing
How Non-Banking Financial Companies Empower Startups With Venture Debt Financing
 
Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...
Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...
Tdasx: In-Depth Analysis of Cryptocurrency Giveaway Scams and Security Strate...
 
falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...
falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...
falcon-invoice-discounting-a-premier-investment-platform-for-superior-returns...
 
Economic Risk Factor Update: June 2024 [SlideShare]
Economic Risk Factor Update: June 2024 [SlideShare]Economic Risk Factor Update: June 2024 [SlideShare]
Economic Risk Factor Update: June 2024 [SlideShare]
 
Discover the Future of Dogecoin with Our Comprehensive Guidance
Discover the Future of Dogecoin with Our Comprehensive GuidanceDiscover the Future of Dogecoin with Our Comprehensive Guidance
Discover the Future of Dogecoin with Our Comprehensive Guidance
 
Unlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptx
Unlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptxUnlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptx
Unlock-the-Power-of-UAN-Your-Key-to-Secure-Retirement.pptx
 
Independent Study - College of Wooster Research (2023-2024)
Independent Study - College of Wooster Research (2023-2024)Independent Study - College of Wooster Research (2023-2024)
Independent Study - College of Wooster Research (2023-2024)
 
Fabular Frames and the Four Ratio Problem
Fabular Frames and the Four Ratio ProblemFabular Frames and the Four Ratio Problem
Fabular Frames and the Four Ratio Problem
 

Chapter3 econometrics

  • 1. Multiple Regression Analysis Võ Đức Hoàng Vũ University of Economics HCMC June 2015 Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 1 / 1
  • 2. Estimation The model is : y = β0 + β1x1 + β2x2 + . . . + βkxk β0 is still the intercept β1 to βk all called slope parameters u is still the error term (or disturbance) Still need to make a zero conditional mean assumption, so now assume that E(u|x1, x2, . . . , xk) = 0 Still minimizing the sum of squared residuals, so have k + 1 first order conditions Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 2 / 1
  • 3. Interpreting Multiple Regression ˆβ0 + ˆβ1x1 + . . . + ˆβkxk, so ∆ˆy = ∆ˆβ1x1 + ∆ˆβ2x2 + . . . + ∆ˆβkxk, so holding x2, . . . , xk fixed implies that ∆ˆy = ∆ˆβ1x1, that is each β has a ceteris paribus interpretation. Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 3 / 1
  • 4. "Partialling Out" Interpretation Consider the case where k = 2, i.e. ˆy = ˆβ0 + ˆβ1x1 + ˆβ2x2, then ˆβ1 = ( ˆri1yi )/ ˆr2 i1, where ˆri1 are the residuals from the estimated regression ˆx1 = ˆγ0 + ˆγ2x2 Previous equation implies that regressing y on x1 and x2 gives same effect of x1 as regressing y on residuals from a regression of x1 on x2. This means only the part of xi1 that is uncorrelated with xi2 are being related to yi so we’re estimating the effect of x1 on y after x2 has been "partialled out". Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 4 / 1
  • 5. Simple vs Multiple Regression Estimate Compare the simple regression ˜y = ˜β0 + ˜β1x1 with the multiple regression haty = ˆβ0 + ˆβ1x1 + ˆβ2x2 Generally, ˜β1 = ˆβ1 unless: ˆβ2 = 0 (i.e. no partial effect of x2) OR x1 and x2 are uncorrelated in the sample Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 5 / 1
  • 6. Goodness-of-fit We can think of each observation as being made up of an explained part, and an unexplained part - yi = ˆyi + ˆui - We then define the following: (yi − ¯y)2 is the total sum of squares (SST) (ˆyi − ¯y)2 is the explained sum of squares (SSE) ˆu2 i is the residual sum of squares (SSR) Then SST = SSE + SSR How do we think about how well our sample regression line fits our sample data? Can compute the fraction of the total sum of squares (SST) that is explained by the model, call this the R-squared of regression R2 = SSE/SST = 1 − SSR/SST Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 6 / 1
  • 7. Goodness-of-fit (cont) We can also think of R2 as being equal to the squared correlation coefficient between the actual yi and the value ˆyi R2 = ( (yi − ¯y)(ˆyi − ¯ˆy))2 ( (yi − ¯y)2)( (ˆyi − ¯ˆy)2) R2 can never decrease when another independent variable is added to regression, and usually will increase Because R2 will usually increase with the number of independent variables, it is not a good way to compare models. Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 7 / 1
  • 8. Assumption for Unbiasedness Population model is linear in parameters: y = β0 + β1x1 + β2x2 + . . . + βkxk + u We can use a random sample of size n, {(xi1, xi2, . . . , xik, yi ) : i = 1, 2, . . . , n}, from the population model, so that the sample model is yi = β0 + β1xi1 + β2xi2 + . . . + βkxik + ui E(u|x1, x2, . . . , xk) = 0, implying that all of the explanatory variables are exogenous. None of the x’s is constant, and there are no exact linear relationships among them. Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 8 / 1
  • 9. Too Many or Too Few Variables What happens if we include variables in our specification that don’t belong? There is no effect on our parameter estimate, and OLS remains unbiased What if we exclude a variable from our specification that does belong? OLS will usually be biased. Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 9 / 1
  • 10. Omitted Variable Bias Suppose the true model is given as y = β0 + β1x1 + β2x2 + u, but we estimate ˜y = + ˜β1x1 + u, then ˜β1 = (xi1 − ¯x1)yi (xi1 − ¯x1)2 Recall the true model, so that yi = β0 + β1xi1 + β2xi2 + ui , so the numerator becomes (xi1 − ¯x1)(β0 + β1xi1 + β2xi2 + ui ) = β1 (xi1 − ¯x1)2 + β2 (xi1 − ¯x1)xi2 + (xi1 − ¯x)ui Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 10 / 1
  • 11. Omitted Variable Bias (cont) ˜β = β1 + β2 (xi1 − ¯x1)xi2 (xi1 − ¯x1)2 + (xi1 − ¯x1)ui (xi1 − ¯x1)2 since E(ui ) = 0, taking expectations we have E( ˜β1) = β1 + β2 (xi1 − ¯x1)xi2 (xi1 − ¯x1)2 Consider the regression of x2 on x1 ˜x2 = ˜δ0 + ˜δ1x1 then ˜δ1 = (xi1 − ¯x1)xi2 (xi1 − ¯x1)2 so E(˜β1) = β1 + β2 ˜δ1 Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 11 / 1
  • 12. Summary of Direction of Bias Corr(x1, x2) > 0 Corr(x1, x2) < 0 β2 > 0 Positive bias Negative bias β2 < 0 Negative bias Positive bias Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 12 / 1
  • 13. Omitted Variable Bias Summary Two cases where bias is equal to zero β2 = 0 that is x2 doesn’t really bebong in model x1 and x2 are uncorrelated in the sample If correlation between x2, x1 and x2, y is the same direction, bias will be positive If correlation between x2, x1 and x2, y is the opposite direction, bias will be negative Technically, can only sign the bias for the more general case if al of the included x’s are uncorrelated. Typpically, then, we work through the bias assuming the x’s are uncorrelated, as a useful guide even if this assumption is not strictly true. Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 13 / 1
  • 14. Variance of the OLS Estimators Now we know that the sampling distribution of our estimate is centered around the true parameter Want to think about how spread out this distribution is Much easier to think about this variance under an additional assumption, so Assume Var(u|x1, x2, . . . , xk) = σ2 (Homoskedasticity) Let xxx stand for (x1, x2, . . . , xk) Assuming that Var(u|x) = σ2 also implies that Var(y|x) = σ2 The 4 assumptions for unbiasedness, plus this homoskedasticity assumption are known as the Gauss-Markov assumptions Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 14 / 1
  • 15. Variance of OLS (cont.) Given the Gauss-Markov assumptions Var( ˆβj) = σ2 SSTj(1 − R2 j ) , where SSTj = (xij − ¯xj)2 and R2 j is the R2 from regressioing xj on all other x’s Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 15 / 1
  • 16. Components of OLS Variances The error variance: a larger σ2 implies a larger variance for the OLS estimators The total sample variation: a larger SSTj implies a smaller variance for the estimators Linear relationships among the independent variables: a larger R2 j implies a larger variance for the estimators Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 16 / 1
  • 17. Misspecified Models Consider again the misspecified model ˜y = ˜β0 + ˜β1x1, so that Var( ˜β1) = σ2 SST1 Thus, Var( ˜β1) < Var( ˆβ1) unless x1 and x2 are uncorrelated, then they’re the same Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 17 / 1
  • 18. Misspecified Models (cont.) While the variance of the estimator is smaller for the misspecified model, unless β2 = 0 the misspecified model is biased As the sample size grows, the variance of each estimator shrinks to zero, making the variance difference less important Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 18 / 1
  • 19. Estimating the Error Variance We don’t know what the error variance, σ2 , is, because we don’t observe the errors, ui What we observe are the residuals, ˆui We can use the residuals to form an estimate of the error variance ˆσ2 = ( ˆu2 i )/(n − k − 1) ≡ SSR/df thus, se(ˆβj ) = ˆσ/[SSTj (1 − R2 j )]1/2 df = n − (k + 1) Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 19 / 1
  • 20. The Gauss-Markov Theorem Given our 5 Gauss-Markov Assumption it can be shown that OLS is "BLUE" Best Linear Unbiased Estimator Thus, if the assumptions hold, use OLS Võ Đức Hoàng Vũ (UEH) Applied Econometrics June 2015 20 / 1