HOME

TheInfoList



OR:

In
statistics Statistics (from German: '' Statistik'', "description of a state, a country") is the discipline that concerns the collection, organization, analysis, interpretation, and presentation of data. In applying statistics to a scientific, indust ...
, simple linear regression is a
linear regression In statistics, linear regression is a linear approach for modelling the relationship between a scalar response and one or more explanatory variables (also known as dependent and independent variables). The case of one explanatory variable is cal ...
model with a single
explanatory variable Dependent and independent variables are variables in mathematical modeling, statistical modeling and experimental sciences. Dependent variables receive this name because, in an experiment, their values are studied under the supposition or deman ...
. That is, it concerns two-dimensional sample points with one independent variable and one dependent variable (conventionally, the ''x'' and ''y'' coordinates in a
Cartesian coordinate system A Cartesian coordinate system (, ) in a plane is a coordinate system that specifies each point uniquely by a pair of numerical coordinates, which are the signed distances to the point from two fixed perpendicular oriented lines, measured in ...
) and finds a linear function (a non-vertical straight line) that, as accurately as possible, predicts the dependent variable values as a function of the independent variable. The adjective ''simple'' refers to the fact that the outcome variable is related to a single predictor. It is common to make the additional stipulation that the
ordinary least squares In statistics, ordinary least squares (OLS) is a type of linear least squares method for choosing the unknown parameters in a linear regression model (with fixed level-one effects of a linear function of a set of explanatory variables) by the ...
(OLS) method should be used: the accuracy of each predicted value is measured by its squared '' residual'' (vertical distance between the point of the data set and the fitted line), and the goal is to make the sum of these squared deviations as small as possible. Other regression methods that can be used in place of ordinary least squares include
least absolute deviations Least absolute deviations (LAD), also known as least absolute errors (LAE), least absolute residuals (LAR), or least absolute values (LAV), is a statistical optimality criterion and a statistical optimization technique based minimizing the '' sum ...
(minimizing the sum of absolute values of residuals) and the
Theil–Sen estimator In non-parametric statistics, the Theil–Sen estimator is a method for robustly fitting a line to sample points in the plane ( simple linear regression) by choosing the median of the slopes of all lines through pairs of points. It has also ...
(which chooses a line whose
slope In mathematics, the slope or gradient of a line is a number that describes both the ''direction'' and the ''steepness'' of the line. Slope is often denoted by the letter ''m''; there is no clear answer to the question why the letter ''m'' is use ...
is the
median In statistics and probability theory, the median is the value separating the higher half from the lower half of a data sample, a population, or a probability distribution. For a data set, it may be thought of as "the middle" value. The basic f ...
of the slopes determined by pairs of sample points).
Deming regression In statistics, Deming regression, named after W. Edwards Deming, is an errors-in-variables model which tries to find the line of best fit for a two-dimensional dataset. It differs from the simple linear regression in that it accounts for error ...
(total least squares) also finds a line that fits a set of two-dimensional sample points, but (unlike ordinary least squares, least absolute deviations, and median slope regression) it is not really an instance of simple linear regression, because it does not separate the coordinates into one dependent and one independent variable and could potentially return a vertical line as its fit. The remainder of the article assumes an ordinary least squares regression. In this case, the slope of the fitted line is equal to the correlation between and corrected by the ratio of standard deviations of these variables. The intercept of the fitted line is such that the line passes through the center of mass of the data points.


Fitting the regression line

Consider the model function : y = \alpha + \beta x, which describes a line with slope and -intercept . In general such a relationship may not hold exactly for the largely unobserved population of values of the independent and dependent variables; we call the unobserved deviations from the above equation the
errors An error (from the Latin ''error'', meaning "wandering") is an action which is inaccurate or incorrect. In some usages, an error is synonymous with a mistake. The etymology derives from the Latin term 'errare', meaning 'to stray'. In statistics ...
. Suppose we observe data pairs and call them . We can describe the underlying relationship between and involving this error term by : y_i = \alpha + \beta x_i + \varepsilon_i. This relationship between the true (but unobserved) underlying parameters and and the data points is called a linear regression model. The goal is to find estimated values \widehat\alpha and \widehat\beta for the parameters and which would provide the "best" fit in some sense for the data points. As mentioned in the introduction, in this article the "best" fit will be understood as in the
least-squares The method of least squares is a standard approach in regression analysis to approximate the solution of overdetermined systems (sets of equations in which there are more equations than unknowns) by minimizing the sum of the squares of the res ...
approach: a line that minimizes the
sum of squared residuals In statistics, the residual sum of squares (RSS), also known as the sum of squared estimate of errors (SSE), is the sum of the squares of residuals (deviations predicted from actual empirical values of data). It is a measure of the discrepa ...
(see also Errors and residuals) \widehat\varepsilon_i (differences between actual and predicted values of the dependent variable ''y''), each of which is given by, for any candidate parameter values \alpha and \beta, :\widehat\varepsilon_i =y_i-\alpha -\beta x_i. In other words, \widehat\alpha and \widehat\beta solve the following minimization problem: : \text\min_ Q(\alpha, \beta), \quad \text Q(\alpha, \beta) = \sum_^n\widehat\varepsilon_i^ = \sum_^n (y_i -\alpha - \beta x_i)^2\ . By expanding to get a quadratic expression in \alpha and \beta, we can derive values of \alpha and \beta that minimize the objective function (these minimizing values are denoted \widehat and \widehat): : \begin \widehat\alpha & = \bar - ( \widehat\beta\,\bar), \\ pt \widehat\beta &= \frac \\ pt &= \frac \\ pt &= r_ \frac. \\ pt\end Here we have introduced Substituting the above expressions for \widehat and \widehat into : f = \widehat + \widehat x, yields : \frac = r_ \frac . This shows that is the slope of the regression line of the standardized data points (and that this line passes through the origin). Since -1 \leq r_ \leq 1 then we get that if x is some measurement and y is a followup measurement from the same item, then we expect that y (on average) will be closer to the mean measurement than it was to the original value of x. This phenomenon is known as regressions toward the mean. Generalizing the \bar x notation, we can write a horizontal bar over an expression to indicate the average value of that expression over the set of samples. For example: :\overline = \frac \sum_^n x_i y_i. This notation allows us a concise formula for : :r_ = \frac . The coefficient of determination ("R squared") is equal to r_^2 when the model is linear with a single independent variable. See sample correlation coefficient for additional details.


Intuition about the slope

By multiplying all members of the summation in the numerator by : \begin\frac = 1\end (thereby not changing it): : \begin \widehat\beta &= \frac = \frac = \sum_^n \frac \frac \\ pt \end We can see that the slope (tangent of angle) of the regression line is the weighted average of \frac that is the slope (tangent of angle) of the line that connects the i-th point to the average of all points, weighted by (x_i - \bar)^2 because the further the point is the more "important" it is, since small errors in its position will affect the slope connecting it to the center point more.


Intuition about the intercept

: \begin \widehat\alpha & = \bar - \widehat\beta\,\bar, \\ pt\end Given \widehat\beta = \tan(\theta) = dy / dx \rightarrow dy = dx\times\widehat\beta with \theta the angle the line makes with the positive x axis, we have y_ = \bar - dx\times\widehat\beta = \bar - dy


Intuition about the correlation

In the above formulation, notice that each x_i is a constant ("known upfront") value, while the y_i are random variables that depend on the linear function of x_i and the random term \varepsilon_i. This assumption is used when deriving the standard error of the slope and showing that it is unbiased. In this framing, when x_i is not actually a
random variable A random variable (also called random quantity, aleatory variable, or stochastic variable) is a mathematical formalization of a quantity or object which depends on random events. It is a mapping or a function from possible outcomes (e.g., the po ...
, what type of parameter does the empirical correlation r_ estimate? The issue is that for each value i we'll have: E(x_i)=x_i and Var(x_i)=0. A possible interpretation of r_ is to imagine that x_i defines a random variable drawn from the empirical distribution of the x values in our sample. For example, if x had 10 values from the
natural numbers In mathematics, the natural numbers are those numbers used for counting (as in "there are ''six'' coins on the table") and ordering (as in "this is the ''third'' largest city in the country"). Numbers used for counting are called '' cardinal ...
: ,2,3...,10 then we can imagine x to be a Discrete uniform distribution. Under this interpretation all x_i have the same expectation and some positive variance. With this interpretation we can think of r_ as the estimator of the Pearson's correlation between the random variable y and the random variable x (as we just defined it).


Simple linear regression without the intercept term (single regressor)

Sometimes it is appropriate to force the regression line to pass through the origin, because and are assumed to be proportional. For the model without the intercept term, , the OLS estimator for simplifies to : \widehat = \frac = \frac Substituting in place of gives the regression through : : \begin \widehat\beta &= \frac = \frac \\ pt &= \frac \\ pt &= \frac \\ pt &= \frac, \end where Cov and Var refer to the covariance and variance of the sample data (uncorrected for bias). The last form above demonstrates how moving the line away from the center of mass of the data points affects the slope.


Numerical properties


Model-based properties

Description of the statistical properties of estimators from the simple linear regression estimates requires the use of a
statistical model A statistical model is a mathematical model that embodies a set of statistical assumptions concerning the generation of sample data (and similar data from a larger population). A statistical model represents, often in considerably idealized form ...
. The following is based on assuming the validity of a model under which the estimates are optimal. It is also possible to evaluate the properties under other assumptions, such as inhomogeneity, but this is discussed elsewhere.


Unbiasedness

The estimators \widehat and \widehat are unbiased. To formalize this assertion we must define a framework in which these estimators are random variables. We consider the residuals as random variables drawn independently from some distribution with mean zero. In other words, for each value of , the corresponding value of is generated as a mean response plus an additional random variable called the ''error term'', equal to zero on average. Under such interpretation, the least-squares estimators \widehat\alpha and \widehat\beta will themselves be random variables whose means will equal the "true values" and . This is the definition of an unbiased estimator.


Confidence intervals

The formulas given in the previous section allow one to calculate the ''point estimates'' of and — that is, the coefficients of the regression line for the given set of data. However, those formulas don't tell us how precise the estimates are, i.e., how much the estimators \widehat and \widehat vary from sample to sample for the specified sample size.
Confidence interval In frequentist statistics, a confidence interval (CI) is a range of estimates for an unknown parameter. A confidence interval is computed at a designated ''confidence level''; the 95% confidence level is most common, but other levels, such as 9 ...
s were devised to give a plausible set of values to the estimates one might have if one repeated the experiment a very large number of times. The standard method of constructing confidence intervals for linear regression coefficients relies on the normality assumption, which is justified if either: # the errors in the regression are normally distributed (the so-called ''classic regression'' assumption), or # the number of observations is sufficiently large, in which case the estimator is approximately normally distributed. The latter case is justified by the central limit theorem.


Normality assumption

Under the first assumption above, that of the normality of the error terms, the estimator of the slope coefficient will itself be normally distributed with mean and variance \sigma^2\left/\sum(x_i - \bar)^2\right., where is the variance of the error terms (see Proofs involving ordinary least squares). At the same time the sum of squared residuals is distributed proportionally to with degrees of freedom, and independently from \widehat. This allows us to construct a -value : t = \frac\ \sim\ t_, where : s_\widehat = \sqrt is the ''standard error'' of the estimator \widehat. This -value has a Student's -distribution with degrees of freedom. Using it we can construct a confidence interval for : : \beta \in \left widehat\beta - s_ t^*_,\ \widehat\beta + s_ t^*_\right at confidence level , where t^*_ is the \scriptstyle \left(1 \;-\; \frac\right)\text quantile of the distribution. For example, if then the confidence level is 95%. Similarly, the confidence interval for the intercept coefficient is given by : \alpha \in \left \widehat\alpha - s_ t^*_,\ \widehat\alpha + s_\widehat t^*_\right at confidence level (1 − ''γ''), where : s_ = s_\widehat\sqrt = \sqrt The confidence intervals for and give us the general idea where these regression coefficients are most likely to be. For example, in the
Okun's law In economics, Okun's law is an empirically observed relationship between unemployment and losses in a country's production. It is named after Arthur Melvin Okun, who first proposed the relationship in 1962. The "gap version" states that for ever ...
regression shown here the point estimates are : \widehat = 0.859, \qquad \widehat = -1.817. The 95% confidence intervals for these estimates are : \alpha \in \left ,0.76, 0.96\right \qquad \beta \in \left 2.06, -1.58 \,\right In order to represent this information graphically, in the form of the confidence bands around the regression line, one has to proceed carefully and account for the joint distribution of the estimators. It can be shownCasella, G. and Berger, R. L. (2002), "Statistical Inference" (2nd Edition), Cengage, , pp. 558–559. that at confidence level (1 − ''γ'') the confidence band has hyperbolic form given by the equation : (\alpha + \beta \xi) \in \left \,\widehat + \widehat \xi \pm t^*_ \sqrt\,\right When the model assumed the intercept is fixed and equal to 0 (\alpha = 0), the standard error of the slope turns into: : s_\widehat = \sqrt With: \hat_i = y_i - \hat y_i


Asymptotic assumption

The alternative second assumption states that when the number of points in the dataset is "large enough", the
law of large numbers In probability theory, the law of large numbers (LLN) is a theorem that describes the result of performing the same experiment a large number of times. According to the law, the average of the results obtained from a large number of trials shou ...
and the central limit theorem become applicable, and then the distribution of the estimators is approximately normal. Under this assumption all formulas derived in the previous section remain valid, with the only exception that the quantile ''t*''''n''−2 of Student's ''t'' distribution is replaced with the quantile ''q*'' of the
standard normal distribution In statistics, a normal distribution or Gaussian distribution is a type of continuous probability distribution for a real-valued random variable. The general form of its probability density function is : f(x) = \frac e^ The parameter \mu ...
. Occasionally the fraction is replaced with . When is large such a change does not alter the results appreciably.


Numerical example

This data set gives average masses for women as a function of their height in a sample of American women of age 30–39. Although the OLS article argues that it would be more appropriate to run a quadratic regression for this data, the simple linear regression model is applied here instead. : There are ''n'' = 15 points in this data set. Hand calculations would be started by finding the following five sums: : \begin S_ &= \sum x_i \, = 24.76, \qquad S_ = \sum y_i \, = 931.17, \\ ptS_ &= \sum x_i^2 = 41.0532, \;\;\, S_ = \sum y_i^2 = 58498.5439, \\ ptS_ &= \sum x_iy_i = 1548.2453 \end These quantities would be used to calculate the estimates of the regression coefficients, and their standard errors. : \begin \widehat\beta &= \frac = 61.272 \\ pt \widehat\alpha &= \fracS_y - \widehat \fracS_x = -39.062 \\ pt s_\varepsilon^2 &= \frac \left nS_ - S_y^2 - \widehat\beta^2(nS_ - S_x^2) \right= 0.5762 \\ pt s_\widehat^2 &= \frac = 3.1539 \\ pt s_\widehat^2 &= s_\widehat^2 \frac S_ = 8.63185 \end The 0.975 quantile of Student's ''t''-distribution with 13 degrees of freedom is , and thus the 95% confidence intervals for and are : \begin & \alpha \in ,\widehat \mp t^*_ s_\alpha \,= ,,\ \,\\ pt & \beta \in ,\widehat \mp t^*_ s_\beta \,= , 57.4,\ 65.1 \,\end The product-moment correlation coefficient might also be calculated: : \widehat = \frac = 0.9946


See also

* Design matrix#Simple linear regression * Line fitting * Linear trend estimation *
Linear segmented regression Segmented regression, also known as piecewise regression or broken-stick regression, is a method in regression analysis in which the independent variable is partitioned into intervals and a separate line segment is fit to each interval. Segmented ...
* Proofs involving ordinary least squares—derivation of all formulas used in this article in general multidimensional case


References


External links


Wolfram MathWorld's explanation of Least Squares Fitting, and how to calculate it


zh-yue:簡單線性迴歸分析 {{DEFAULTSORT:Simple Linear Regression Curve fitting Regression analysis Parametric statistics