Presentation is loading. Please wait.

Presentation is loading. Please wait.

Least Squares Regression

Similar presentations


Presentation on theme: "Least Squares Regression"— Presentation transcript:

1 Least Squares Regression
Fitting a Line to Bivariate Data

2 But which line best describes our data?
Correlation tells us about strength (scatter) and direction of the linear relationship between two quantitative variables. In addition, we would like to have a numerical description of how both variables vary together. For instance, is one variable increasing faster than the other one? And we would like to make predictions based on that numerical description. But which line best describes our data?

3 The regression line The least-squares regression line is the unique line such that the sum of the squared vertical (y) distances between the data points and the line is the smallest possible. Distances between the points and line are squared so all are positive values. This is done so that distances can be properly added (Pythagoras).

4 Properties is the predicted y value (y hat)
The least-squares regression line can be shown to have this equation: where is the predicted y value (y hat) b1 is the slope b0 is the y-intercept “b0" is in units of y "b1" is in units of y / units of x

5 How to: First we calculate the slope of the line, b; from statistics we already know: r is the correlation. sy is the standard deviation of the response variable y. sx is the the standard deviation of the explanatory variable x. Once we know b1, the slope, we can calculate b0, the y-intercept: where x and y are the sample means of the x and y variables This means that we don't have to calculate a lot of squared distances to find the least-squares regression line for a data set. We can instead rely on the equation. But typically, we use a 2-var stats calculator or stats software.

6 BEWARE!!! Not all calculators and software use the same convention:
Some use instead: Make sure you know what YOUR calculator gives you for a and b before you answer homework or exam questions.

7 Software output intercept slope R2 R2 intercept slope
absolute value of r R2 intercept slope

8 The equation completely describes the regression line.
NOTE: The regression line always passes through the point with coordinates (xbar, ybar).

9 The distinction between explanatory and response variables is crucial in regression. If you exchange y for x in calculating the regression line, you will get the wrong line. Recall that Regression examines the distance of all points from the line in the y direction only. Hubble telescope data about galaxies moving away from earth: These two lines are the two regression lines calculated either correctly (x = distance, y = velocity, solid line) or incorrectly (x = velocity, y = distance, dotted line).

10 Correlation versus regression
The correlation is a measure of spread (scatter) in both the x and y directions in the linear relationship. In regression we examine the variation in the response variable (y) given change in the explanatory variable (x).

11 Making predictions: interpolation
The equation of the least-squares regression allows to predict y for any x within the range studied. This is called interpolating. Nobody in the study drank 6.5 beers, but by finding the value of from the regression line for x = 6.5 we would expect a blood alcohol content of mg/ml.

12 (in 1000’s) ˆ y = . 125 x - 41 4 There is a positive linear relationship between the number of powerboats registered and the number of manatee deaths. The least squares regression line has the equation: ˆ y = . 125 x - 41 4 Thus if we were to limit the number of powerboat registrations to 500,000, what could we expect for the number of manatee deaths? Roughly 21 manatees.

13 Extrapolation !!! !!! Extrapolation is the use of a regression line for predictions outside the range of x values used to obtain the line. This can be a very stupid thing to do, as seen here. Height in Inches Height in Inches

14 The y intercept Sometimes the y-intercept is not a realistic possibility. Here we have negative blood alcohol content, which makes no sense… y-intercept shows negative blood alcohol But the negative value is appropriate for the equation of the regression line. There is a lot of scatter in the data, and the line is just an estimate.

15 R-squared = r2; the proportion of y-variation explained by changes in x.
r2, the coefficient of determination, is the square of the correlation coefficient. r2 represents the proportion of the variation in y (vertical scatter from the regression line) that can be explained by changes in x. Go over point that missing zero is OK - this is messy data, a prediction based on messy data. Residuals should be scattered randomly around the line, or there is something wrong with your data - not linear, outliers, etc.

16 Here the change in x only explains 76% of the change in y
Here the change in x only explains 76% of the change in y. The rest of the change in y (the vertical scatter, shown as red arrows) must be explained by something other than x. r = 0.87 r2 = 0.76 r = -1 r2 = 1 Changes in x explain 100% of the variations in y. Y can be entirely predicted for any given value of x. r = 0 r2 = 0 Changes in x explain 0% of the variations in y. The value(s) y takes is (are) entirely independent of what value x takes.

17 Example: SAT scores

18 SAT scores: calculations

19 SAT scores: result r2 = (-.868)2 = .7534
About 75% of the variation in state mean SAT scores is explained by differences in the % of seniors that take the test. If 57% of NC seniors take the SAT, the predicted mean score is

20 There is a great deal of variation in BAC for the same number of beers drunk. A person’s blood volume is a factor in the equation that was overlooked here. r =0.7 r2 =0.49 We changed number of beers to number of beers/weight of person in lb. r =0.9 r2 =0.81 So let’s look at this scatterplot. Overall pattern: in general, the BAC increases with the number of beers you drink. In the first plot, number of beers only explains 49% of the variation in blood alcohol content. But number of beers / weight explains 81% of the variation in blood alcohol content. Additional factors contribute to variations in BAC among individuals (like maybe some genetic ability to process alcohol).

21 Grade performance If class attendance explains 16% of the variation in grades, what is the correlation between percent of classes attended and grade? 1. We need to make an assumption: attendance and grades are positively correlated. So r will be positive too. 2. r2 = 0.16, so r = +√0.16 = A weak correlation.

22 Transforming relationships
A scatterplot might show a clear relationship between two quantitative variables, but issues of influential points or non linearity prevent us from using correlation and regression tools. Transforming the data – changing the scale in which one or both of the variables are expressed – can make the shape of the relationship linear in some cases. Example: Patterns of growth are often exponential, at least in their initial phase. Changing the response variable y into log(y) or ln(y) will transform the pattern from an upward-curved exponential to a straight line.

23 Exponential bacterial growth
In ideal environments, bacteria multiply through binary fission. The number of bacteria can double every 20 minutes in that way. Exponential growth 2n, not suitable for regression. log(2n) = n*log(2) ≈ 0.3n Taking the log changes the growth pattern into a straight line.

24 Body weight and brain weight in 96 mammal species
r = 0.86, but this is misleading. The elephant is an influential point. Most mammals are very small in comparison. Without this point, r = 0.50 only. Now we plot the log of brain weight against the log of body weight. The pattern is linear, with r = 0.96. The vertical scatter is homogenous → good for predictions of brain weight from body weight (in the log scale).

25 Inference for least squares lines
Inference for simple linear regression Simple linear regression model Conditions for inference Confidence interval for regression parameters Significance test for the slope Confidence interval for E(y) for a given x Prediction interval for y for a given x

26 The data in a scatterplot are a random sample from a population that may exhibit a linear relationship between x and y. Different sample  different plot. Now we want to describe the population mean response E(y) as a function of the explanatory variable x: E(y)= b0 + b1x. And to assess whether the observed relationship is statistically significant (not entirely explained by chance events due to random sampling).

27 Simple linear regression model
In the population, the linear regression equation is E(y) = b0 + b1x. Sample data then fits the model: Data = fit residual yi = (b0 + b1xi) (ei) where the ei are independent and Normally distributed N(0,s). Linear regression assumes equal standard deviation of y (s is the same for all values of x).

28 E(y) = b0 + b1x The intercept b0, the slope b1, and the standard deviation s of y are the unknown parameters of the regression model. We rely on the random sample data to provide unbiased estimates of these parameters. The value of ŷ from the least-squares regression line is really a prediction of the mean value of y (E(y)) for a given value of x. The least-squares regression line (ŷ = b0 + b1x) obtained from sample data is the best estimate of the true population regression line (E(y) = b0 + b1x). ŷ unbiased estimate for mean response E(y) b0 unbiased estimate for intercept b0 b1 unbiased estimate for slope b1

29 The population standard deviation s for y at any given value of x represents the spread of the normal distribution of the ei around the mean E(y) . The regression standard error, s, for n sample data points is calculated from the residuals (yi – ŷi): se is an unbiased estimate of the regression standard deviation s.

30 Conditions for inference
The observations are independent. The relationship is indeed linear. The standard deviation of y, σ, is the same for all values of x. The response y varies normally around its mean.

31 Using residual plots to check for regression validity
The residuals (y − ŷ) give useful information about the contribution of individual data points to the overall pattern of scatter. We view the residuals in a residual plot: If residuals are scattered randomly around 0 with uniform variation, it indicates that the data fit a linear model, have normally distributed residuals for each value of x, and constant standard deviation σ.

32 Residuals are randomly scattered  good!
Curved pattern  the relationship is not linear. Change in variability across plot  σ not equal for all values of x.

33 What is the relationship between the average speed a car is driven and its fuel efficiency?
We plot fuel efficiency (in miles per gallon, MPG) against average speed (in miles per hour, MPH) for a random sample of 60 cars. The relationship is curved. When speed is log transformed (log of miles per hour, LOGMPH) the new scatterplot shows a positive, linear relationship.

34 Residual plot: The spread of the residuals is reasonably random—no clear pattern. The relationship is indeed linear. But we see one low residual (3.8, −4) and one potentially influential point (2.5, 0.5). Normal quantile plot for residuals: The plot is fairly straight, supporting the assumption of normally distributed residuals.  Data okay for inference.

35 Standard Error for the Slope
Three aspects of the scatterplot affect the standard error of the regression slope: spread around the line, se spread of x values, sx sample size, n. The formula for the standard error (which you will probably never have to calculate by hand) is:

36 Confidence interval for 1
Estimating the regression parameters b0, b1 is a case of one-sample inference with unknown population standard deviation.  We rely on the t distribution, with n – 2 degrees of freedom. A level C confidence interval for the slope, b1, is proportional to the standard error of the least-squares slope: b1 ± t* SE(b1) t* is the t critical for the t (n – 2) distribution with area C between –t* and +t*. We estimate the standard error of b1 with where n is the sample size, sx is the ordinary standard deviation of the x values

37 Confidence interval for 0
A level C confidence interval for the intercept, b0 , is proportional to the standard error of the least-squares intercept: b0 ± t* SEb0 The intercept usually isn’t interesting. Most hypothesis tests and confidence intervals for regression are about the slope.

38 Hypothesis test for the slope
We may look for evidence of a significant relationship between variables x and y in the population from which our data were drawn. For that, we can test the hypothesis that the regression slope parameter β1 is equal to zero. H0: β1 = 0 vs. Ha: β1 ≠ 0 Testing H0: β1 = 0 also allows to test the hypothesis of no correlation between x and y in the population. Note: A test of hypothesis for b0 is irrelevant (b0 is often not even achievable).

39 Hypothesis test for the slope (cont.)
We usually test the hypothesis H0: β1 = 0 vs. Ha: β1 ≠ 0 but we can also test H0: β1 = 0 vs. Ha: β1 < 0 or H0: β1 = 0 vs. Ha: β1 > 0 To do this we calculate the test statistic Use the t dist. with n – 2 df to find the P-value of the test. Note: Software typically provides two-sided p-values.

40 Using technology Computer software runs all the computations for regression analysis. Here is some software output for the car speed/gas efficiency example. SPSS Slope Intercept Confidence intervals p-value for tests of significance The t-test for regression slope is highly significant (p < 0.001). There is a significant relationship between average car speed and gas efficiency.

41 Excel SAS “intercept”: intercept “logmph”: slope
P-value for tests of significance confidence intervals SAS

42 Confidence Intervals and Prediction Intervals for Predicted Values
Once we have a useful regression, how can we indulge our natural desire to predict, without being irresponsible? Now we have standard errors—we can use those to construct a confidence interval for the predictions and to report our uncertainty honestly.

43 An Example: Body Fat and Waist Size
Consider an example that involves investigating the relationship in adult males between % Body Fat and Waist size (in inches). Here is a scatterplot of the data for 250 adult males of various ages:

44 Confidence Intervals and Prediction Intervals for Predicted Values(cont.)
For our %body fat and waist size example, there are two questions we could ask: Do we want to know the mean %body fat for all men with a waist size of, say, 38 inches? Do we want to estimate the %body fat for a particular man with a 38-inch waist? The predicted %body fat is the same in both questions, but we can predict the mean %body fat for all men whose waist size is 38 inches with a lot more precision than we can predict the %body fat of a particular individual whose waist size happens to be 38 inches.

45 Confidence Intervals and Prediction Intervals for Predicted Values(cont.)
We start with the same prediction in both cases. We are predicting for a new individual, one that was not in the original data set. Call his x-value xν. The regression predicts %body fat as

46 Confidence Intervals and Prediction Intervals for Predicted Values(cont.)
Both intervals take the form The SE’s will be different for the two questions we have posed.

47 Confidence Intervals and Prediction Intervals for Predicted Values(cont.)
The standard error of the mean predicted value is: Individuals vary more than means, so the standard error for a single predicted value is larger than the standard error for the mean:

48 Confidence Intervals and Prediction Intervals for Predicted Values (cont.)
Confidence interval for  Prediction interval for y

49 Confidence Intervals for Predicted Values
Here’s a look at the difference between predicting for a mean and predicting for an individual. The solid green lines near the regression line show the 95% confidence intervals for the mean predicted value, and the dashed red lines show the prediction intervals for individuals. The solid green lines and the dashed red lines curve away from the least squares line as x moves farther away from xbar.

50 More on confidence intervals for 
As seen on the preceding slides, we can calculate a confidence interval for the population mean of all responses y when x takes the value x (within the range of data tested): denote this expected value E(y) by  This interval is centered on ŷ, the unbiased estimate of . The true value of the population mean  at a particular value x, will indeed be within our confidence interval in C% of all intervals calculated from many different random samples.

51 The level C confidence interval for the mean response μ at a given value x of x is centered on ŷ (unbiased estimate of μ): t* is the t critical for the t (n – 2) distribution with area C between –t* and +t*. A separate confidence interval is calculated for μ along all the values that x takes. Graphically, the series of confidence intervals is shown as a continuous interval on either side of ŷ. 95% confidence bands for m as x varies over all x values

52 More on prediction intervals for y
One use of regression is for predicting the value of y, ŷ, for any value of x within the range of data tested: ŷ = b0 + b1x. But the regression equation depends on the particular sample drawn. More reliable predictions require statistical inference: To estimate an individual response y for a given value of x, we use a prediction interval. If we randomly sampled many times, there would be many different values of y obtained for a particular x following N(0, σ) around the mean response μ.

53 The level C prediction interval for a single observation on y when x takes the value x is:
t* is the t critical for the t (n – 2) distribution with area C between –t* and +t*. The prediction interval represents mainly the error from the normal distribution of the residuals ei. Graphically, the series confidence intervals is shown as a continuous interval on either side of ŷ. 95% prediction interval for ŷ as x varies over all x values

54 95% prediction interval for y 95% confidence interval for m
The confidence interval for μ contains with C% confidence the population mean μ of all responses at a particular value x. The prediction interval contains C% of all the individual values taken by y at a particular value x. 95% prediction interval for y 95% confidence interval for m Estimating m uses a smaller confidence interval than estimating an individual in the population (sampling distribution narrower than population distribution).

55 1918 flu epidemics The line graph suggests that 7 to 9% of those diagnosed with the flu died within about a week of diagnosis. We look at the relationship between the number of deaths in a given week and the number of new diagnosed cases one week earlier.

56 P-value very small  reject H0  β1 significantly different from 0
1918 flu epidemic: Relationship between the number of deaths in a given week and the number of new diagnosed cases one week earlier. EXCEL Regression Statistics Multiple R R Square Adjusted R Square Standard Error Observations Coefficients St. Error t Stat P-value Lower 95% Upper 95% Intercept (14.720) FluCases s b1 P-value for H0: β1 = 0 P-value very small  reject H0  β1 significantly different from 0 There is a significant relationship between the number of flu cases and the number of deaths from flu a week later.

57 SPSS CI for mean weekly death count one week after x= 4000 flu cases are diagnosed: µ within about 300–380. Prediction interval for a weekly death count one week after x= 4000 flu cases are diagnosed: y within about 180–500 deaths. Least squares regression line 95% prediction interval for y 95% confidence interval for my

58 boy may be well within the range of height for his age, but
What is this? A 90% prediction interval for the height (above) and a 90% prediction interval for the weight (below) of male children, ages 3 to 18. So, any individual boy may be well within the range of height for his age, but also be within the distributions for boys year or two older or younger as well. Two possible size distributions are shown.


Download ppt "Least Squares Regression"

Similar presentations


Ads by Google