ECO375 Tutorial 4 Introduction to Statistical Inference

Size: px
Start display at page:

Download "ECO375 Tutorial 4 Introduction to Statistical Inference"

Transcription

1 ECO375 Tutorial 4 Introduction to Statistical Inference Matt Tudball University of Toronto Mississauga October 19, 2017 Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

2 Statistical Inference First of all, what is statistical inference? Recall that our objective in doing statistics is to use data to estimate the parameters of the underlying distribution which is producing that data. Since we may only work with a random sample of a fixed sample size n there is always going to be some variation in our estimators. As we showed when we did Monte Carlo simulations, estimates of the mean can differ greatly across samples. The fundamental question of statistical inference, given this variation, how can we make statements about the relationship between our estimators and the true population parameters we are trying to estimate? Reference: Chapter 4 of Wooldridge Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

3 Distribution of the Mean As a motivating example, let s consider a set of random variables {X 1, X 2,..., X n } which are independent and identically distributed (IID) with X i N ( µ, σ 2), denoting the normal distribution with mean µ and variance σ 2. Given the n data points drawn from this distribution, suppose we want to estimate the mean of the distribution. Naturally, the estimator for the mean is simply ˆµ = 1 n n i=1 X i. Let s now derive the variance of the estimator. Var(ˆµ) = Var( 1 n n i=1 X i) = 1 n 2 Var( n i=1 X i) = 1 n 2 n i=1 Var(X i) by independence of X i = 1 n 2 n i=1 σ2 by identical distribution of X i = 1 n 2 nσ 2 = 1 n σ2 Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

4 Monte Carlo Simulation of the Mean It is possible to show by the property of the normal distribution that, since ˆµ is distributed with mean µ and variance 1 n σ2 and since all of the X i are normally distributed, that ˆµ N ( µ, 1 n σ2). For example, let s suppose that X i N (5, 2). I went ahead and ran a Monte Carlo simulation in which I produced 1000 samples of sample size 100 from this distribution and calculate their means. As expected, the average ˆµ is , which is very close to our µ of 5 and the variance of ˆµ was , which is roughly equal to 1 n σ2 = = Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

5 Confidence Intervals Most of the time, however, we will only have a single ˆµ coming from a single sample of size n. In this more common case, how can we use the known distribution of ˆµ to help us make claims about the relationship between ˆµ and µ? A very useful thing to note is that, since ˆµ N (µ, 1 n σ2 ), by the properties of the normal distribution ˆµ µ σ/ N (0, 1). This is called n the z-statistic. What we have done here is taken away the mean and divided by the square root of the variance. This is known as normalising the distribution. This is useful because this expression has a known distribution that no longer depends on unknown parameters. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

6 Confidence Interval with Known σ 2 Using this fact, we can now begin to answer questions about the probability that the true mean falls within some interval. Since we know how ˆµ µ σ/ is distributed, we can very easily find an interval [ ] n zα/2, z α/2 such that it will fall inside that interval (1 α)% of the time, where we call α the significance level. z α/2 is called the critical value and it is subscripted by α/2 to emphasise that its value depends on the significance level we specify. By our definitions so far, (1 α)% = P( z α/2 ˆµ µ σ/ n z α/2) = P( z α/2 σ n ˆµ µ z α/2 σ n ) = P( z α/2 σ n µ ˆµ z α/2 σ n ) = P(ˆµ z α/2 σ n µ ˆµ + z α/2 σ n ) Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

7 Confidence Interval with Known σ 2 ] σ Assuming that we know σ, this interval [ˆµ z α/2 n σ, ˆµ + z α/2 n is calculable from the data. This is what s called a confidence interval. It s very important to keep in mind that, for a single estimate ˆµ, the true value µ is either inside or outside of the confidence interval associated with ˆµ. It is not correct to interpret the confidence interval as an interval such that µ is inside it with probability (1 α)%. The correct way to interpret it is that, if we took a hypothetical infinite number of samples of sample size n, then µ would fall inside of their confidence intervals (1 α)% of the time. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

8 Finding Critical Values You might be wondering how we find the critical value z α/2. Reminder that z α/2 is a point on the standard normal distribution N (0, 1) such that for Z drawn from that distribution, P( z α/2 Z z α/2 ) = P(Z z α/2 ) P(Z z α/2 ) = (1 α)%. We can find these values using the standard normal table, which shows values along the cumulative distribution function of the standard normal. On the slide below, you can calculate for (1 α)% = 95%, z α/2 = z = So our 95% confidence interval for the mean ] of the normal distribution is [ˆµ 1.96 n σ, ˆµ n σ Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

9 Finding Critical Values Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

10 In-Class Exercise 1 Consider the following code for running a Monte Carlo simulation to calculate the proportion of the time that the 95% confidence interval for a sample mean contains the true mean. postfile buffer inconf using "$path/conf.dta", replace forvalues i = 1/1000 { qui set seed i qui drop _all qui set obs 20 qui generate x = rnormal(5,sqrt(2)) qui mean x qui local lower = _b[x]-1.96*sqrt(2)/sqrt(20) qui local upper = _b[x]+1.96*sqrt(2)/sqrt(20) qui local inconf = ( lower <= 5) & (5 <= upper ) post buffer ( inconf ) } postclose buffer use "$path/conf.dta", clear Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

11 In-Class Exercise 1 Suppose you have data coming from a normal distribution with known variance of σ 2 = 2. You have 20 observations in your sample and you calculate a sample mean of 5.1. What is the 95% confidence interval for this dataset? Run the code in the previous slide in Stata. You will end up with a dataset containing a variable which takes values of 0 or 1. It will be 1 if the true mean fell inside of that sample mean s confidence interval and 0 otherwise. Calculate the proportion of the time that the confidence interval contained the true mean. Suppose we now wanted to calculate a 90% confidence interval for the sample mean. Re-run this code using critical values for the 90% confidence interval. What proportion of the time does the 90% confidence interval contain the true mean? Is this to be expected? Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

12 Confidence Interval with Unknown σ 2 Up until now we have assumed that σ 2 is known. However, this will rarely be the case in practice. A good estimator for σ 2 is just the Bessel-corrected sample variance, ˆσ 2 = 1 n 1 n (X i ˆµ) 2 We can plug this back into our original statistic and obtain the t-statistic t = ˆµ µ ˆσ/ n. Since ˆσ2 is now an estimator for σ 2 and therefore has sampling variation associated with it, this statistic will no longer be distributed on N (0, 1). It will instead follow a t-distribution on n 1 degrees of freedom. i=1 t = ˆµ µ ˆσ/ n t n 1 Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

13 Confidence Interval with Unknown σ 2 The consequence of this is that, when we pick our critical values for our confidence intervals, we must now look at the table for the t-distribution. Therefore the form of our (1 α)% confidence interval with unknown σ 2 is, [ˆµ t n 1,α/2 ˆσ n, ˆµ + t n 1,α/2 ˆσ n ] where t n 1,α/2 is a critical value from the t-distribution on n 1 degrees of freedom. You can calculate these using the table in the slide below. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

14 Confidence Interval with Unknown σ 2 Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

15 In-Class Exercise 2 Consider the following code for running a Monte Carlo simulation to calculate the proportion of the time that the 95% confidence interval for a sample mean with unknown variance contains the true mean. postfile buffer inconf using "$path/conf.dta", replace forvalues i = 1/1000 { qui set seed i qui drop _all qui set obs 20 qui generate x = rnormal(5,sqrt(2)) qui mean x qui local lower = _b[x]-1.96*_se[x] qui local upper = _b[x]+1.96*_se[x] qui local inconf = ( lower <= 5) & (5 <= upper ) post buffer ( inconf ) } postclose buffer use "$path/conf.dta", clear Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

16 In-Class Exercise 2 Run this code in Stata and calculate the proportion as before. What do you notice about the proportion in this case? Notice that I use critical values from the z-table in the above code. I should be using critical values from the t-table. Input the correct critical values and re-run the code. What do you notice about the proportion now? Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

17 Hypothesis Testing Another common application of statistical inference is hypothesis testing. Hypothesis testing allows us to ask questions of the form: Assume that the true value of µ = µ 0. Under this assumption, what is the probability that we would have observed the t-statistic that we calculated? If the probability is low, then it seems unlikely that µ 0 is a good candidate for the true value µ. In the language of hypothesis testing, the hypothesis H 0 : µ = µ 0 is known as the null hypothesis and the hypothesis we are testing against, H 1 : µ µ 0, is known as the alternate hypothesis. The form of this hypothesis test is called a two-sided hypothesis test. This is in contrast to the tests H 0 : µ µ 0, H 1 : µ < µ 0 and H 0 : µ µ 0, H 1 : µ > µ 0 which are known as one-sided hypothesis tests. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

18 Hypothesis Testing: Two-Sided Test Let s return again to our t-statistic t = ˆµ µ ˆσ/ n. Under the null hypothesis of the two-sided test H 0 : µ = µ 0, we calculate t = ˆµ µ 0 ˆσ/. This is the t-statistic under the assumption that n µ = µ 0. If ˆµ is very different from µ 0 (after normalising with respect to the standard deviation) then our t-statistic is going to be fairly large in absolute value. Picking a significance level α as before and looking at the t-table, we can figure out a critical value such that the probability under the null hypothesis of observing a t-statistic larger (in absolute value) than that critical value is less than α%. This critical value is going to be t α/2 for the two-sided test. We are going to reject the null hypothesis if the absolute value of our t-statistic is greater than t α/2 : t > t α/2. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

19 Hypothesis Testing: One-Sided Test The approach is going to be similar for the one-sided test. For H 0 : µ µ 0, H 1 : µ > µ 0, we are going to calculate a critical value t α and we will reject the null hypothesis if t > t α. For H 0 : µ µ 0, H 1 : µ < µ 0, we are going to calculate a critical value t α and we will reject the null hypothesis if t < t α. It is important to keep in mind that we either reject the null hypothesis or fail to reject the null hypothesis. With hypothesis testing we are only able to find evidence against the null hypothesis. A t-statistic which induces us to reject the null hypothesis does not necessarily provide evidence in favour of accepting the alternate hypothesis. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

20 Hypothesis Testing: t-test Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

21 Inference on Regression Estimates Up until now we have been performing inference over a simple sample mean. We can also, however, perform inference over more complicated estimators such the OLS estimators. Recall the MLR.6 assumption: The error u i is independent of the explanatory variables x i1, x i2,..., x ik and is normally distributed with mean 0 and variance σ 2 u i N (0, σ 2 ) This is the key assumption for allowing us to construct confidence intervals and perform hypothesis tests with the OLS estimators. Consider the simple regression model y i = β 0 + β 1 x i + u i. We know the estimator ˆβ 1 can be written as, ˆβ 1 = n i=1 (x 1i x 1 )y i n i=1 (x 1i x 1 ) 2 = n i=1 (x 1i x 1 )(β 0 +β 1 x i +u i ) n i=1 (x 1i x 1 ) 2 = β 1 + n i=1 (x 1i x 1 )u i n i=1 (x 1i x 1 ) 2 Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

22 Inference on Regression Estimates Since we know that u i N (0, σ 2 ), it follows from the property of the normal distribution that, ( ( n )) i=1 ˆβ 1 N β 1, Var (x 1i x 1 )u n i i=1 (x 1i x 1 ) 2 n i=1 where Var( (x 1i x 1 )u n i σ i=1 (x 1i x 1 ) = 2 ) 2 n i=1 (x 1i x 1 ) 2 from MLR.5. Unfortunately the variance of ˆβ 1 is a function of the unknown σ 2. Similar to the case with the mean, we will simply replace σ 2 with an estimator. A natural approach is to just take a (Bessel-corrected) average of the sample residuals û i, σ 2 = 1 n k n i=1 û2 i. Our t-statistic is going to be, t = ˆβ 1 β 1 ŝe( ˆβ 1) t n 2 which is the t-distribution on n 2 degrees of freedom. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

23 Inference on Regression Estimates: Confidence Interval This generalises very easily to multiple regression with k > 1. The t-statistic on some ˆβ j in multiple regression will be, t = ˆβ j β j ŝe( ˆβ j) t n k 1 which is the t-distribution on n k 1 degrees of freedom. We can therefore very easily apply the formulas we derived previously for confidence intervals and hypothesis tests to inference over regression estimates. The (1 α)% confidence interval for β j is going to be, [ ˆβ j t n k 1,α/2 ˆσ n, ˆβ j + t n k 1,α/2 ˆσ n ] where t n k 1,α/2 is the critical value from the t-distribution on n k 1 degrees of freedom. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

24 Inference on Regression Estimates: Hypothesis Testing Hypothesis testing also generalises very easily to the multiple regression model. In doing t-tests, we will be stating a null hypothesis for a single coefficient β j The two-sided hypothesis test is of the form H 0 : β j = γ against the alternate hypothesis H 1 : β j γ. As before we would simply calculate our t-statistic t = ( ˆβ j γ)/ŝe( ˆβ j ) and find critical values t n k 1,α/2 for a given significance level α and degrees of freedom n k 1. If t > t n k 1,α/2 we reject the null hypothesis. For the one-sided hypothesis test of the form H 0 : β j γ, H 1 : β j > γ we are going to calculate t n k 1,α and we will reject the null if t > t n k 1,α. For the one-sided hypothesis test of the form H 0 : β j γ, H 1 : β j < γ we are going to calculate t n k 1,α and we will reject the null if t < t n k 1,α. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

25 Hypothesis Testing: F-test What if we want to test hypotheses over multiple estimates? For example, H 0 : β 1 = β 2 = β 3 = 0. For hypotheses of this form we will use an F-test. The F-statistic takes the form, F = (SSRr SSRur )/q SSR ur /(n k 1) = (R2 ur R2 r )/q (1 R 2 ur )/(n k 1) F q,n k 1 SSR r denotes the sum of squared residuals of the restricted model in which we assume the null hypothesis is true. Rr 2 is the R 2 from this restricted model. SSR ur denotes the sum of squared residuals of the unrestricted model in which we make no assumptions over the coefficients in the null hypothesis. Rur 2 is the R 2 from this unrestricted model. q is the number of restrictions being tested. In the example above, it is 3. n k 1 is the degrees of freedom of the unrestricted model. Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

26 Hypothesis Testing: F-test Matt Tudball (University of Toronto) ECO375H5 October 19, / 26

ECO375 Tutorial 8 Instrumental Variables

ECO375 Tutorial 8 Instrumental Variables ECO375 Tutorial 8 Instrumental Variables Matt Tudball University of Toronto Mississauga November 16, 2017 Matt Tudball (University of Toronto) ECO375H5 November 16, 2017 1 / 22 Review: Endogeneity Instrumental

More information

ECO375 Tutorial 7 Heteroscedasticity

ECO375 Tutorial 7 Heteroscedasticity ECO375 Tutorial 7 Heteroscedasticity Matt Tudball University of Toronto Mississauga November 9, 2017 Matt Tudball (University of Toronto) ECO375H5 November 9, 2017 1 / 24 Review: Heteroscedasticity Consider

More information

Econometrics I KS. Module 2: Multivariate Linear Regression. Alexander Ahammer. This version: April 16, 2018

Econometrics I KS. Module 2: Multivariate Linear Regression. Alexander Ahammer. This version: April 16, 2018 Econometrics I KS Module 2: Multivariate Linear Regression Alexander Ahammer Department of Economics Johannes Kepler University of Linz This version: April 16, 2018 Alexander Ahammer (JKU) Module 2: Multivariate

More information

LECTURE 6. Introduction to Econometrics. Hypothesis testing & Goodness of fit

LECTURE 6. Introduction to Econometrics. Hypothesis testing & Goodness of fit LECTURE 6 Introduction to Econometrics Hypothesis testing & Goodness of fit October 25, 2016 1 / 23 ON TODAY S LECTURE We will explain how multiple hypotheses are tested in a regression model We will define

More information

ECO375 Tutorial 4 Wooldridge: Chapter 6 and 7

ECO375 Tutorial 4 Wooldridge: Chapter 6 and 7 ECO375 Tutorial 4 Wooldridge: Chapter 6 and 7 Matt Tudball University of Toronto St. George October 6, 2017 Matt Tudball (University of Toronto) ECO375H1 October 6, 2017 1 / 36 ECO375 Tutorial 4 Welcome

More information

Simple Linear Regression

Simple Linear Regression Simple Linear Regression In simple linear regression we are concerned about the relationship between two variables, X and Y. There are two components to such a relationship. 1. The strength of the relationship.

More information

1 Independent Practice: Hypothesis tests for one parameter:

1 Independent Practice: Hypothesis tests for one parameter: 1 Independent Practice: Hypothesis tests for one parameter: Data from the Indian DHS survey from 2006 includes a measure of autonomy of the women surveyed (a scale from 0-10, 10 being the most autonomous)

More information

coefficients n 2 are the residuals obtained when we estimate the regression on y equals the (simple regression) estimated effect of the part of x 1

coefficients n 2 are the residuals obtained when we estimate the regression on y equals the (simple regression) estimated effect of the part of x 1 Review - Interpreting the Regression If we estimate: It can be shown that: where ˆ1 r i coefficients β ˆ+ βˆ x+ βˆ ˆ= 0 1 1 2x2 y ˆβ n n 2 1 = rˆ i1yi rˆ i1 i= 1 i= 1 xˆ are the residuals obtained when

More information

Multiple Regression Analysis

Multiple Regression Analysis Multiple Regression Analysis y = β 0 + β 1 x 1 + β 2 x 2 +... β k x k + u 2. Inference 0 Assumptions of the Classical Linear Model (CLM)! So far, we know: 1. The mean and variance of the OLS estimators

More information

Lectures 5 & 6: Hypothesis Testing

Lectures 5 & 6: Hypothesis Testing Lectures 5 & 6: Hypothesis Testing in which you learn to apply the concept of statistical significance to OLS estimates, learn the concept of t values, how to use them in regression work and come across

More information

Ch 2: Simple Linear Regression

Ch 2: Simple Linear Regression Ch 2: Simple Linear Regression 1. Simple Linear Regression Model A simple regression model with a single regressor x is y = β 0 + β 1 x + ɛ, where we assume that the error ɛ is independent random component

More information

Statistical Inference with Regression Analysis

Statistical Inference with Regression Analysis Introductory Applied Econometrics EEP/IAS 118 Spring 2015 Steven Buck Lecture #13 Statistical Inference with Regression Analysis Next we turn to calculating confidence intervals and hypothesis testing

More information

Linear models and their mathematical foundations: Simple linear regression

Linear models and their mathematical foundations: Simple linear regression Linear models and their mathematical foundations: Simple linear regression Steffen Unkel Department of Medical Statistics University Medical Center Göttingen, Germany Winter term 2018/19 1/21 Introduction

More information

Chapter 12 - Lecture 2 Inferences about regression coefficient

Chapter 12 - Lecture 2 Inferences about regression coefficient Chapter 12 - Lecture 2 Inferences about regression coefficient April 19th, 2010 Facts about slope Test Statistic Confidence interval Hypothesis testing Test using ANOVA Table Facts about slope In previous

More information

Inference in Regression Model

Inference in Regression Model Inference in Regression Model Christopher Taber Department of Economics University of Wisconsin-Madison March 25, 2009 Outline 1 Final Step of Classical Linear Regression Model 2 Confidence Intervals 3

More information

LECTURE 5. Introduction to Econometrics. Hypothesis testing

LECTURE 5. Introduction to Econometrics. Hypothesis testing LECTURE 5 Introduction to Econometrics Hypothesis testing October 18, 2016 1 / 26 ON TODAY S LECTURE We are going to discuss how hypotheses about coefficients can be tested in regression models We will

More information

Measuring the fit of the model - SSR

Measuring the fit of the model - SSR Measuring the fit of the model - SSR Once we ve determined our estimated regression line, we d like to know how well the model fits. How far/close are the observations to the fitted line? One way to do

More information

Note on Bivariate Regression: Connecting Practice and Theory. Konstantin Kashin

Note on Bivariate Regression: Connecting Practice and Theory. Konstantin Kashin Note on Bivariate Regression: Connecting Practice and Theory Konstantin Kashin Fall 2012 1 This note will explain - in less theoretical terms - the basics of a bivariate linear regression, including testing

More information

Econometrics. 4) Statistical inference

Econometrics. 4) Statistical inference 30C00200 Econometrics 4) Statistical inference Timo Kuosmanen Professor, Ph.D. http://nomepre.net/index.php/timokuosmanen Today s topics Confidence intervals of parameter estimates Student s t-distribution

More information

Statistical Inference. Part IV. Statistical Inference

Statistical Inference. Part IV. Statistical Inference Part IV Statistical Inference As of Oct 5, 2017 Sampling Distributions of the OLS Estimator 1 Statistical Inference Sampling Distributions of the OLS Estimator Testing Against One-Sided Alternatives Two-Sided

More information

Week 2: Review of probability and statistics

Week 2: Review of probability and statistics Week 2: Review of probability and statistics Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ALL RIGHTS RESERVED

More information

LECTURE 5 HYPOTHESIS TESTING

LECTURE 5 HYPOTHESIS TESTING October 25, 2016 LECTURE 5 HYPOTHESIS TESTING Basic concepts In this lecture we continue to discuss the normal classical linear regression defined by Assumptions A1-A5. Let θ Θ R d be a parameter of interest.

More information

Lab 11 - Heteroskedasticity

Lab 11 - Heteroskedasticity Lab 11 - Heteroskedasticity Spring 2017 Contents 1 Introduction 2 2 Heteroskedasticity 2 3 Addressing heteroskedasticity in Stata 3 4 Testing for heteroskedasticity 4 5 A simple example 5 1 1 Introduction

More information

MS&E 226: Small Data

MS&E 226: Small Data MS&E 226: Small Data Lecture 15: Examples of hypothesis tests (v5) Ramesh Johari ramesh.johari@stanford.edu 1 / 32 The recipe 2 / 32 The hypothesis testing recipe In this lecture we repeatedly apply the

More information

F9 F10: Autocorrelation

F9 F10: Autocorrelation F9 F10: Autocorrelation Feng Li Department of Statistics, Stockholm University Introduction In the classic regression model we assume cov(u i, u j x i, x k ) = E(u i, u j ) = 0 What if we break the assumption?

More information

Multiple Linear Regression

Multiple Linear Regression Multiple Linear Regression Simple linear regression tries to fit a simple line between two variables Y and X. If X is linearly related to Y this explains some of the variability in Y. In most cases, there

More information

STAT 3A03 Applied Regression With SAS Fall 2017

STAT 3A03 Applied Regression With SAS Fall 2017 STAT 3A03 Applied Regression With SAS Fall 2017 Assignment 2 Solution Set Q. 1 I will add subscripts relating to the question part to the parameters and their estimates as well as the errors and residuals.

More information

Lecture 15. Hypothesis testing in the linear model

Lecture 15. Hypothesis testing in the linear model 14. Lecture 15. Hypothesis testing in the linear model Lecture 15. Hypothesis testing in the linear model 1 (1 1) Preliminary lemma 15. Hypothesis testing in the linear model 15.1. Preliminary lemma Lemma

More information

ECON Introductory Econometrics. Lecture 5: OLS with One Regressor: Hypothesis Tests

ECON Introductory Econometrics. Lecture 5: OLS with One Regressor: Hypothesis Tests ECON4150 - Introductory Econometrics Lecture 5: OLS with One Regressor: Hypothesis Tests Monique de Haan (moniqued@econ.uio.no) Stock and Watson Chapter 5 Lecture outline 2 Testing Hypotheses about one

More information

Economics 326 Methods of Empirical Research in Economics. Lecture 14: Hypothesis testing in the multiple regression model, Part 2

Economics 326 Methods of Empirical Research in Economics. Lecture 14: Hypothesis testing in the multiple regression model, Part 2 Economics 326 Methods of Empirical Research in Economics Lecture 14: Hypothesis testing in the multiple regression model, Part 2 Vadim Marmer University of British Columbia May 5, 2010 Multiple restrictions

More information

Probability and Statistics Notes

Probability and Statistics Notes Probability and Statistics Notes Chapter Seven Jesse Crawford Department of Mathematics Tarleton State University Spring 2011 (Tarleton State University) Chapter Seven Notes Spring 2011 1 / 42 Outline

More information

The t-distribution. Patrick Breheny. October 13. z tests The χ 2 -distribution The t-distribution Summary

The t-distribution. Patrick Breheny. October 13. z tests The χ 2 -distribution The t-distribution Summary Patrick Breheny October 13 Patrick Breheny Biostatistical Methods I (BIOS 5710) 1/25 Introduction Introduction What s wrong with z-tests? So far we ve (thoroughly!) discussed how to carry out hypothesis

More information

Multiple Regression Analysis: Heteroskedasticity

Multiple Regression Analysis: Heteroskedasticity Multiple Regression Analysis: Heteroskedasticity y = β 0 + β 1 x 1 + β x +... β k x k + u Read chapter 8. EE45 -Chaiyuth Punyasavatsut 1 topics 8.1 Heteroskedasticity and OLS 8. Robust estimation 8.3 Testing

More information

Simple Linear Regression

Simple Linear Regression Simple Linear Regression ST 370 Regression models are used to study the relationship of a response variable and one or more predictors. The response is also called the dependent variable, and the predictors

More information

Multiple Regression Analysis

Multiple Regression Analysis Multiple Regression Analysis y = 0 + 1 x 1 + x +... k x k + u 6. Heteroskedasticity What is Heteroskedasticity?! Recall the assumption of homoskedasticity implied that conditional on the explanatory variables,

More information

Multiple Regression Analysis: The Problem of Inference

Multiple Regression Analysis: The Problem of Inference Multiple Regression Analysis: The Problem of Inference Jamie Monogan University of Georgia Intermediate Political Methodology Jamie Monogan (UGA) Multiple Regression Analysis: Inference POLS 7014 1 / 10

More information

STAT420 Midterm Exam. University of Illinois Urbana-Champaign October 19 (Friday), :00 4:15p. SOLUTIONS (Yellow)

STAT420 Midterm Exam. University of Illinois Urbana-Champaign October 19 (Friday), :00 4:15p. SOLUTIONS (Yellow) STAT40 Midterm Exam University of Illinois Urbana-Champaign October 19 (Friday), 018 3:00 4:15p SOLUTIONS (Yellow) Question 1 (15 points) (10 points) 3 (50 points) extra ( points) Total (77 points) Points

More information

School of Mathematical Sciences. Question 1

School of Mathematical Sciences. Question 1 School of Mathematical Sciences MTH5120 Statistical Modelling I Practical 8 and Assignment 7 Solutions Question 1 Figure 1: The residual plots do not contradict the model assumptions of normality, constant

More information

Ch 3: Multiple Linear Regression

Ch 3: Multiple Linear Regression Ch 3: Multiple Linear Regression 1. Multiple Linear Regression Model Multiple regression model has more than one regressor. For example, we have one response variable and two regressor variables: 1. delivery

More information

M(t) = 1 t. (1 t), 6 M (0) = 20 P (95. X i 110) i=1

M(t) = 1 t. (1 t), 6 M (0) = 20 P (95. X i 110) i=1 Math 66/566 - Midterm Solutions NOTE: These solutions are for both the 66 and 566 exam. The problems are the same until questions and 5. 1. The moment generating function of a random variable X is M(t)

More information

Questions 3.83, 6.11, 6.12, 6.17, 6.25, 6.29, 6.33, 6.35, 6.50, 6.51, 6.53, 6.55, 6.59, 6.60, 6.65, 6.69, 6.70, 6.77, 6.79, 6.89, 6.

Questions 3.83, 6.11, 6.12, 6.17, 6.25, 6.29, 6.33, 6.35, 6.50, 6.51, 6.53, 6.55, 6.59, 6.60, 6.65, 6.69, 6.70, 6.77, 6.79, 6.89, 6. Chapter 7 Reading 7.1, 7.2 Questions 3.83, 6.11, 6.12, 6.17, 6.25, 6.29, 6.33, 6.35, 6.50, 6.51, 6.53, 6.55, 6.59, 6.60, 6.65, 6.69, 6.70, 6.77, 6.79, 6.89, 6.112 Introduction In Chapter 5 and 6, we emphasized

More information

AGEC 621 Lecture 16 David Bessler

AGEC 621 Lecture 16 David Bessler AGEC 621 Lecture 16 David Bessler This is a RATS output for the dummy variable problem given in GHJ page 422; the beer expenditure lecture (last time). I do not expect you to know RATS but this will give

More information

MAT2377. Rafa l Kulik. Version 2015/November/26. Rafa l Kulik

MAT2377. Rafa l Kulik. Version 2015/November/26. Rafa l Kulik MAT2377 Rafa l Kulik Version 2015/November/26 Rafa l Kulik Bivariate data and scatterplot Data: Hydrocarbon level (x) and Oxygen level (y): x: 0.99, 1.02, 1.15, 1.29, 1.46, 1.36, 0.87, 1.23, 1.55, 1.40,

More information

Practical Econometrics. for. Finance and Economics. (Econometrics 2)

Practical Econometrics. for. Finance and Economics. (Econometrics 2) Practical Econometrics for Finance and Economics (Econometrics 2) Seppo Pynnönen and Bernd Pape Department of Mathematics and Statistics, University of Vaasa 1. Introduction 1.1 Econometrics Econometrics

More information

Introduction to Statistics

Introduction to Statistics MTH4106 Introduction to Statistics Notes 15 Spring 2013 Testing hypotheses about the mean Earlier, we saw how to test hypotheses about a proportion, using properties of the Binomial distribution It is

More information

Applied Statistics and Econometrics

Applied Statistics and Econometrics Applied Statistics and Econometrics Lecture 6 Saul Lach September 2017 Saul Lach () Applied Statistics and Econometrics September 2017 1 / 53 Outline of Lecture 6 1 Omitted variable bias (SW 6.1) 2 Multiple

More information

Confidence Intervals and Hypothesis Tests

Confidence Intervals and Hypothesis Tests Confidence Intervals and Hypothesis Tests STA 281 Fall 2011 1 Background The central limit theorem provides a very powerful tool for determining the distribution of sample means for large sample sizes.

More information

Applied Regression. Applied Regression. Chapter 2 Simple Linear Regression. Hongcheng Li. April, 6, 2013

Applied Regression. Applied Regression. Chapter 2 Simple Linear Regression. Hongcheng Li. April, 6, 2013 Applied Regression Chapter 2 Simple Linear Regression Hongcheng Li April, 6, 2013 Outline 1 Introduction of simple linear regression 2 Scatter plot 3 Simple linear regression model 4 Test of Hypothesis

More information

Simple Linear Regression

Simple Linear Regression Simple Linear Regression ST 430/514 Recall: A regression model describes how a dependent variable (or response) Y is affected, on average, by one or more independent variables (or factors, or covariates)

More information

Linear Regression with 1 Regressor. Introduction to Econometrics Spring 2012 Ken Simons

Linear Regression with 1 Regressor. Introduction to Econometrics Spring 2012 Ken Simons Linear Regression with 1 Regressor Introduction to Econometrics Spring 2012 Ken Simons Linear Regression with 1 Regressor 1. The regression equation 2. Estimating the equation 3. Assumptions required for

More information

Bias Variance Trade-off

Bias Variance Trade-off Bias Variance Trade-off The mean squared error of an estimator MSE(ˆθ) = E([ˆθ θ] 2 ) Can be re-expressed MSE(ˆθ) = Var(ˆθ) + (B(ˆθ) 2 ) MSE = VAR + BIAS 2 Proof MSE(ˆθ) = E((ˆθ θ) 2 ) = E(([ˆθ E(ˆθ)]

More information

Fall 2017 STAT 532 Homework Peter Hoff. 1. Let P be a probability measure on a collection of sets A.

Fall 2017 STAT 532 Homework Peter Hoff. 1. Let P be a probability measure on a collection of sets A. 1. Let P be a probability measure on a collection of sets A. (a) For each n N, let H n be a set in A such that H n H n+1. Show that P (H n ) monotonically converges to P ( k=1 H k) as n. (b) For each n

More information

ECO375 Tutorial 9 2SLS Applications and Endogeneity Tests

ECO375 Tutorial 9 2SLS Applications and Endogeneity Tests ECO375 Tutorial 9 2SLS Applications and Endogeneity Tests Matt Tudball University of Toronto Mississauga November 23, 2017 Matt Tudball (University of Toronto) ECO375H5 November 23, 2017 1 / 33 Hausman

More information

Homoskedasticity. Var (u X) = σ 2. (23)

Homoskedasticity. Var (u X) = σ 2. (23) Homoskedasticity How big is the difference between the OLS estimator and the true parameter? To answer this question, we make an additional assumption called homoskedasticity: Var (u X) = σ 2. (23) This

More information

Multiple Regression Analysis: Inference MULTIPLE REGRESSION ANALYSIS: INFERENCE. Sampling Distributions of OLS Estimators

Multiple Regression Analysis: Inference MULTIPLE REGRESSION ANALYSIS: INFERENCE. Sampling Distributions of OLS Estimators 1 2 Multiple Regression Analysis: Inference MULTIPLE REGRESSION ANALYSIS: INFERENCE Hüseyin Taştan 1 1 Yıldız Technical University Department of Economics These presentation notes are based on Introductory

More information

Review: General Approach to Hypothesis Testing. 1. Define the research question and formulate the appropriate null and alternative hypotheses.

Review: General Approach to Hypothesis Testing. 1. Define the research question and formulate the appropriate null and alternative hypotheses. 1 Review: Let X 1, X,..., X n denote n independent random variables sampled from some distribution might not be normal!) with mean µ) and standard deviation σ). Then X µ σ n In other words, X is approximately

More information

Warm-up Using the given data Create a scatterplot Find the regression line

Warm-up Using the given data Create a scatterplot Find the regression line Time at the lunch table Caloric intake 21.4 472 30.8 498 37.7 335 32.8 423 39.5 437 22.8 508 34.1 431 33.9 479 43.8 454 42.4 450 43.1 410 29.2 504 31.3 437 28.6 489 32.9 436 30.6 480 35.1 439 33.0 444

More information

ECON Introductory Econometrics. Lecture 7: OLS with Multiple Regressors Hypotheses tests

ECON Introductory Econometrics. Lecture 7: OLS with Multiple Regressors Hypotheses tests ECON4150 - Introductory Econometrics Lecture 7: OLS with Multiple Regressors Hypotheses tests Monique de Haan (moniqued@econ.uio.no) Stock and Watson Chapter 7 Lecture outline 2 Hypothesis test for single

More information

Econometrics I KS. Module 1: Bivariate Linear Regression. Alexander Ahammer. This version: March 12, 2018

Econometrics I KS. Module 1: Bivariate Linear Regression. Alexander Ahammer. This version: March 12, 2018 Econometrics I KS Module 1: Bivariate Linear Regression Alexander Ahammer Department of Economics Johannes Kepler University of Linz This version: March 12, 2018 Alexander Ahammer (JKU) Module 1: Bivariate

More information

Lectures on Simple Linear Regression Stat 431, Summer 2012

Lectures on Simple Linear Regression Stat 431, Summer 2012 Lectures on Simple Linear Regression Stat 43, Summer 0 Hyunseung Kang July 6-8, 0 Last Updated: July 8, 0 :59PM Introduction Previously, we have been investigating various properties of the population

More information

ECON3150/4150 Spring 2015

ECON3150/4150 Spring 2015 ECON3150/4150 Spring 2015 Lecture 3&4 - The linear regression model Siv-Elisabeth Skjelbred University of Oslo January 29, 2015 1 / 67 Chapter 4 in S&W Section 17.1 in S&W (extended OLS assumptions) 2

More information

17: INFERENCE FOR MULTIPLE REGRESSION. Inference for Individual Regression Coefficients

17: INFERENCE FOR MULTIPLE REGRESSION. Inference for Individual Regression Coefficients 17: INFERENCE FOR MULTIPLE REGRESSION Inference for Individual Regression Coefficients The results of this section require the assumption that the errors u are normally distributed. Let c i ij denote the

More information

σ σ MLR Models: Estimation and Inference v.3 SLR.1: Linear Model MLR.1: Linear Model Those (S/M)LR Assumptions MLR3: No perfect collinearity

σ σ MLR Models: Estimation and Inference v.3 SLR.1: Linear Model MLR.1: Linear Model Those (S/M)LR Assumptions MLR3: No perfect collinearity Comparison of SLR and MLR analysis: What s New? Roadmap Multicollinearity and standard errors F Tests of linear restrictions F stats, adjusted R-squared, RMSE and t stats Playing with Bodyfat: F tests

More information

Review of Econometrics

Review of Econometrics Review of Econometrics Zheng Tian June 5th, 2017 1 The Essence of the OLS Estimation Multiple regression model involves the models as follows Y i = β 0 + β 1 X 1i + β 2 X 2i + + β k X ki + u i, i = 1,...,

More information

SIMPLE REGRESSION ANALYSIS. Business Statistics

SIMPLE REGRESSION ANALYSIS. Business Statistics SIMPLE REGRESSION ANALYSIS Business Statistics CONTENTS Ordinary least squares (recap for some) Statistical formulation of the regression model Assessing the regression model Testing the regression coefficients

More information

Correlation and the Analysis of Variance Approach to Simple Linear Regression

Correlation and the Analysis of Variance Approach to Simple Linear Regression Correlation and the Analysis of Variance Approach to Simple Linear Regression Biometry 755 Spring 2009 Correlation and the Analysis of Variance Approach to Simple Linear Regression p. 1/35 Correlation

More information

The Simple Linear Regression Model

The Simple Linear Regression Model The Simple Linear Regression Model Lesson 3 Ryan Safner 1 1 Department of Economics Hood College ECON 480 - Econometrics Fall 2017 Ryan Safner (Hood College) ECON 480 - Lesson 3 Fall 2017 1 / 77 Bivariate

More information

Chapter 9 Inferences from Two Samples

Chapter 9 Inferences from Two Samples Chapter 9 Inferences from Two Samples 9-1 Review and Preview 9-2 Two Proportions 9-3 Two Means: Independent Samples 9-4 Two Dependent Samples (Matched Pairs) 9-5 Two Variances or Standard Deviations Review

More information

Multiple Regression Analysis: Inference ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD

Multiple Regression Analysis: Inference ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD Multiple Regression Analysis: Inference ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD Introduction When you perform statistical inference, you are primarily doing one of two things: Estimating the boundaries

More information

Space Telescope Science Institute statistics mini-course. October Inference I: Estimation, Confidence Intervals, and Tests of Hypotheses

Space Telescope Science Institute statistics mini-course. October Inference I: Estimation, Confidence Intervals, and Tests of Hypotheses Space Telescope Science Institute statistics mini-course October 2011 Inference I: Estimation, Confidence Intervals, and Tests of Hypotheses James L Rosenberger Acknowledgements: Donald Richards, William

More information

Correlation and Regression

Correlation and Regression Correlation and Regression October 25, 2017 STAT 151 Class 9 Slide 1 Outline of Topics 1 Associations 2 Scatter plot 3 Correlation 4 Regression 5 Testing and estimation 6 Goodness-of-fit STAT 151 Class

More information

Introduction to Statistical Inference Lecture 8: Linear regression, Tests and confidence intervals

Introduction to Statistical Inference Lecture 8: Linear regression, Tests and confidence intervals Introduction to Statistical Inference Lecture 8: Linear regression, Tests and confidence la Non-ar Contents Non-ar Non-ar Non-ar Consider n observations (pairs) (x 1, y 1 ), (x 2, y 2 ),..., (x n, y n

More information

Drawing Inferences from Statistics Based on Multiyear Asset Returns

Drawing Inferences from Statistics Based on Multiyear Asset Returns Drawing Inferences from Statistics Based on Multiyear Asset Returns Matthew Richardson ames H. Stock FE 1989 1 Motivation Fama and French (1988, Poterba and Summer (1988 document significant negative correlations

More information

Homework Set 2, ECO 311, Fall 2014

Homework Set 2, ECO 311, Fall 2014 Homework Set 2, ECO 311, Fall 2014 Due Date: At the beginning of class on October 21, 2014 Instruction: There are twelve questions. Each question is worth 2 points. You need to submit the answers of only

More information

Motivation for multiple regression

Motivation for multiple regression Motivation for multiple regression 1. Simple regression puts all factors other than X in u, and treats them as unobserved. Effectively the simple regression does not account for other factors. 2. The slope

More information

Statistics and econometrics

Statistics and econometrics 1 / 36 Slides for the course Statistics and econometrics Part 10: Asymptotic hypothesis testing European University Institute Andrea Ichino September 8, 2014 2 / 36 Outline Why do we need large sample

More information

ECON The Simple Regression Model

ECON The Simple Regression Model ECON 351 - The Simple Regression Model Maggie Jones 1 / 41 The Simple Regression Model Our starting point will be the simple regression model where we look at the relationship between two variables In

More information

Lecture 5: Hypothesis testing with the classical linear model

Lecture 5: Hypothesis testing with the classical linear model Lecture 5: Hypothesis testing with the classical linear model Assumption MLR6: Normality MLR6 is not one of the Gauss-Markov assumptions. It s not necessary to assume the error is normally distributed

More information

Wooldridge, Introductory Econometrics, 4th ed. Appendix C: Fundamentals of mathematical statistics

Wooldridge, Introductory Econometrics, 4th ed. Appendix C: Fundamentals of mathematical statistics Wooldridge, Introductory Econometrics, 4th ed. Appendix C: Fundamentals of mathematical statistics A short review of the principles of mathematical statistics (or, what you should have learned in EC 151).

More information

Contest Quiz 3. Question Sheet. In this quiz we will review concepts of linear regression covered in lecture 2.

Contest Quiz 3. Question Sheet. In this quiz we will review concepts of linear regression covered in lecture 2. Updated: November 17, 2011 Lecturer: Thilo Klein Contact: tk375@cam.ac.uk Contest Quiz 3 Question Sheet In this quiz we will review concepts of linear regression covered in lecture 2. NOTE: Please round

More information

regression analysis is a type of inferential statistics which tells us whether relationships between two or more variables exist

regression analysis is a type of inferential statistics which tells us whether relationships between two or more variables exist regression analysis is a type of inferential statistics which tells us whether relationships between two or more variables exist sales $ (y - dependent variable) advertising $ (x - independent variable)

More information

ECON 312 FINAL PROJECT

ECON 312 FINAL PROJECT ECON 312 FINAL PROJECT JACOB MENICK 1. Introduction When doing statistics with cross-sectional data, it is common to encounter heteroskedasticity. The cross-sectional econometrician can detect heteroskedasticity

More information

UQ, Semester 1, 2017, Companion to STAT2201/CIVL2530 Exam Formulae and Tables

UQ, Semester 1, 2017, Companion to STAT2201/CIVL2530 Exam Formulae and Tables UQ, Semester 1, 2017, Companion to STAT2201/CIVL2530 Exam Formulae and Tables To be provided to students with STAT2201 or CIVIL-2530 (Probability and Statistics) Exam Main exam date: Tuesday, 20 June 1

More information

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

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

More information

STAT 135 Lab 5 Bootstrapping and Hypothesis Testing

STAT 135 Lab 5 Bootstrapping and Hypothesis Testing STAT 135 Lab 5 Bootstrapping and Hypothesis Testing Rebecca Barter March 2, 2015 The Bootstrap Bootstrap Suppose that we are interested in estimating a parameter θ from some population with members x 1,...,

More information

Hypothesis testing. Data to decisions

Hypothesis testing. Data to decisions Hypothesis testing Data to decisions The idea Null hypothesis: H 0 : the DGP/population has property P Under the null, a sample statistic has a known distribution If, under that that distribution, the

More information

Multiple Linear Regression

Multiple Linear Regression Multiple Linear Regression ST 430/514 Recall: a regression model describes how a dependent variable (or response) Y is affected, on average, by one or more independent variables (or factors, or covariates).

More information

Econometrics - 30C00200

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

More information

The Standard Linear Model: Hypothesis Testing

The Standard Linear Model: Hypothesis Testing Department of Mathematics Ma 3/103 KC Border Introduction to Probability and Statistics Winter 2017 Lecture 25: The Standard Linear Model: Hypothesis Testing Relevant textbook passages: Larsen Marx [4]:

More information

Scatter plot of data from the study. Linear Regression

Scatter plot of data from the study. Linear Regression 1 2 Linear Regression Scatter plot of data from the study. Consider a study to relate birthweight to the estriol level of pregnant women. The data is below. i Weight (g / 100) i Weight (g / 100) 1 7 25

More information

Inferences About Two Population Proportions

Inferences About Two Population Proportions Inferences About Two Population Proportions MATH 130, Elements of Statistics I J. Robert Buchanan Department of Mathematics Fall 2018 Background Recall: for a single population the sampling proportion

More information

Econometrics Multiple Regression Analysis: Heteroskedasticity

Econometrics Multiple Regression Analysis: Heteroskedasticity Econometrics Multiple Regression Analysis: João Valle e Azevedo Faculdade de Economia Universidade Nova de Lisboa Spring Semester João Valle e Azevedo (FEUNL) Econometrics Lisbon, April 2011 1 / 19 Properties

More information

Inference in Regression Analysis

Inference in Regression Analysis ECNS 561 Inference Inference in Regression Analysis Up to this point 1.) OLS is unbiased 2.) OLS is BLUE (best linear unbiased estimator i.e., the variance is smallest among linear unbiased estimators)

More information

Chapter 10. Regression. Understandable Statistics Ninth Edition By Brase and Brase Prepared by Yixun Shi Bloomsburg University of Pennsylvania

Chapter 10. Regression. Understandable Statistics Ninth Edition By Brase and Brase Prepared by Yixun Shi Bloomsburg University of Pennsylvania Chapter 10 Regression Understandable Statistics Ninth Edition By Brase and Brase Prepared by Yixun Shi Bloomsburg University of Pennsylvania Scatter Diagrams A graph in which pairs of points, (x, y), are

More information

Inference for Regression

Inference for Regression Inference for Regression Section 9.4 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 13b - 3339 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

Topic 16 Interval Estimation

Topic 16 Interval Estimation Topic 16 Interval Estimation Additional Topics 1 / 9 Outline Linear Regression Interpretation of the Confidence Interval 2 / 9 Linear Regression For ordinary linear regression, we have given least squares

More information

Quantitative Techniques - Lecture 8: Estimation

Quantitative Techniques - Lecture 8: Estimation Quantitative Techniques - Lecture 8: Estimation Key words: Estimation, hypothesis testing, bias, e ciency, least squares Hypothesis testing when the population variance is not known roperties of estimates

More information

IEOR 165 Lecture 7 1 Bias-Variance Tradeoff

IEOR 165 Lecture 7 1 Bias-Variance Tradeoff IEOR 165 Lecture 7 Bias-Variance Tradeoff 1 Bias-Variance Tradeoff Consider the case of parametric regression with β R, and suppose we would like to analyze the error of the estimate ˆβ in comparison to

More information

Harvard University. Rigorous Research in Engineering Education

Harvard University. Rigorous Research in Engineering Education Statistical Inference Kari Lock Harvard University Department of Statistics Rigorous Research in Engineering Education 12/3/09 Statistical Inference You have a sample and want to use the data collected

More information

Applied Econometrics (QEM)

Applied Econometrics (QEM) Applied Econometrics (QEM) based on Prinicples of Econometrics Jakub Mućk Department of Quantitative Economics Jakub Mućk Applied Econometrics (QEM) Meeting #3 1 / 42 Outline 1 2 3 t-test P-value Linear

More information