Sometimes, the least squares regression model may not be the best for representing a data set. Weโre going to list some reasons why.
An influential point is a point that when added, significantly changes the regression model, whether by affecting the slope, y-intercept, or correlation. There are two types: outliers and high-leverage points, which are both shown in this graph.
Courtesy of Starnes, Daren S. and Tabor, Josh. The Practice of StatisticsโFor the AP Exam, 5th Edition. Cengage Publishing.
An outlier is a point in which the y-value is far away from the rest of the points, that is, it has a high-magnitude residual. These points heavily reduce the correlation of the scatterplot and can occasionally change the y-intercept of a regression line. Child 19 on the scatterplot above is an outlier.
A high-leverage point is a point in which the x-value is far away from the rest of the points. These points pull the regression line towards this point, and thus can significantly change the slope of the line. It can occasionally change the y-intercept of a regression line. Child 18 on the scatterplot above is a high-leverage point.
Sometimes, a linear model is not a good fit for a set of data, and thus it is better to use a nonlinear model. The types that we have to know for this class are exponential and power regression models. (There is also polynomial regression, but that requires knowledge of linear algebra, which is beyond the scope of this course.)
To use exponential and power regression, we will need to transform the data to linearize it (However, most calculators have options to automatically calculate this for you.).ย
Exponential models are of the form ลท=ab^x. We transform this by taking the natural logarithm of both sides. With logarithm properties, we get ln(ลท)=ln(a)+ln(b)x. This means that the relationship between ln(ลท) and x is linear, so we find the LSRL of this transformed data with the y-intercept being a* and the slope being b*. To find a and b, we use:
image courtesy of: codecogs.com
image courtesy of: codecogs.com
Power models are of the form ลท=ax^b. Like exponential models, we also take the natural logarithm of both sides, and with manipulation, we get ln(ลท)=ln(a)+bln(x). This time, the relationship between ln(ลท) and ln(x) is linear. With the LSRL of the transformer data again having y-intercept a* and slope b*, we have:
image courtesy of: codecogs.com
and b=b*.
To evaluate which transformation to use, we check both the residual plots of the transformed data and its R^2. We pick the right model by seeing whether the residuals are randomly scattered and not curved and also whether the R^2 is close to 1. By the way, the R^2 is interpreted as the percent of variation in the response variable that can be explained by a power/exponential model relative to the explanatory variable, which is very similar to its linear counterpart. If the conditions above arenโt met, then there may be another model that may work that we havenโt learned or there are influential points skewing the data set, which is more likely.
To summarize, if our data appears to be an exponential model, we need to take the natural log (or any other base log) of our y coordinates. If our data appears to be a power model, such as a quadratic or cubic function, we need to take the log of both our x and y coordinates.