Jump to content

Local regression

From Wikipedia, the free encyclopedia
LOESS curve fitted to a population sampled from asine wavewith uniform noise added. The LOESS curve approximates the original sine wave.

Local regressionorlocal polynomial regression,[1]also known asmoving regression,[2]is a generalization of themoving averageandpolynomial regression.[3] Its most common methods, initially developed forscatterplot smoothing,areLOESS(locally estimated scatterplot smoothing) andLOWESS(locally weighted scatterplot smoothing), both pronounced/ˈlɛs/LOH-ess.They are two strongly relatednon-parametric regressionmethods that combine multiple regression models in ak-nearest-neighbor-based meta-model. In some fields, LOESS is known and commonly referred to asSavitzky–Golay filter[4][5](proposed 15 years before LOESS).

LOESS and LOWESS thus build on"classical" methods,such as linear and nonlinearleast squares regression.They address situations in which the classical procedures do not perform well or cannot be effectively applied without undue labor. LOESS combines much of the simplicity of linear least squares regression with the flexibility ofnonlinear regression.It does this by fitting simple models to localized subsets of the data to build up a function that describes the deterministic part of the variation in the data, point by point. In fact, one of the chief attractions of this method is that the data analyst is not required to specify a global function of any form to fit a model to the data, only to fit segments of the data.

The trade-off for these features is increased computation. Because it is so computationally intensive, LOESS would have been practically impossible to use in the era when least squares regression was being developed. Most other modern methods for process modeling are similar to LOESS in this respect. These methods have been consciously designed to use our current computational ability to the fullest possible advantage to achieve goals not easily achieved by traditional approaches.

A smooth curve through a set of data points obtained with this statistical technique is called aloess curve,particularly when each smoothed value is given by a weighted quadratic least squares regression over the span of values of they-axisscattergramcriterion variable. When each smoothed value is given by a weighted linear least squares regression over the span, this is known as alowess curve;however, some authorities treatlowessand loess as synonyms.[6][7]

Model definition[edit]

In 1964, Savitsky and Golay proposed a method equivalent to LOESS, which is commonly referred to asSavitzky–Golay filter. William S. Clevelandrediscovered the method in 1979 and gave it a distinct name. The method was further developed by Cleveland andSusan J. Devlin(1988). LOWESS is also known as locally weighted polynomial regression.

At each point in the range of thedata seta low-degreepolynomialis fitted to a subset of the data, withexplanatory variablevalues near the point whoseresponseis being estimated. The polynomial is fitted usingweighted least squares,giving more weight to points near the point whose response is being estimated and less weight to points further away. The value of the regression function for the point is then obtained by evaluating the local polynomial using the explanatory variable values for that data point. The LOESS fit is complete after regression function values have been computed for each of thedata points. Many of the details of this method, such as the degree of the polynomial model and the weights, are flexible. The range of choices for each part of the method and typical defaults are briefly discussed next.

Localized subsets of data[edit]

Thesubsetsof data used for each weighted least squares fit in LOESS are determined by a nearest neighbors algorithm. A user-specified input to the procedure called the "bandwidth" or "smoothing parameter" determines how much of the data is used to fit each local polynomial. The smoothing parameter,,is the fraction of the total numbernof data points that are used in each local fit. The subset of data used in each weighted least squares fit thus comprises thepoints (rounded to the next largest integer) whose explanatory variables' values are closest to the point at which the response is being estimated.[7]

Since a polynomial of degreekrequires at leastk+ 1 points for a fit, the smoothing parametermust be betweenand 1, withdenoting the degree of the local polynomial.

is called the smoothing parameter because it controls the flexibility of the LOESS regression function. Large values ofproduce the smoothest functions that wiggle the least in response to fluctuations in the data. The smalleris, the closer the regression function will conform to the data. Using too small a value of the smoothing parameter is not desirable, however, since the regression function will eventually start to capture the random error in the data.

Degree of local polynomials[edit]

The local polynomials fit to each subset of the data are almost always of first or second degree; that is, either locally linear (in the straight line sense) or locally quadratic. Using a zero degree polynomial turns LOESS into a weightedmoving average.Higher-degree polynomials would work in theory, but yield models that are not really in the spirit of LOESS. LOESS is based on the ideas that any function can be well approximated in a small neighborhood by a low-order polynomial and that simple models can be fit to data easily. High-degree polynomials would tend to overfit the data in each subset and are numerically unstable, making accurate computations difficult.

Weight function[edit]

As mentioned above, the weight function gives the most weight to the data points nearest the point of estimation and the least weight to the data points that are furthest away. The use of the weights is based on the idea that points near each other in the explanatory variable space are more likely to be related to each other in a simple way than points that are further apart. Following this logic, points that are likely to follow the local model best influence the local model parameter estimates the most. Points that are less likely to actually conform to the local model have less influence on the local modelparameterestimates.

The traditional weight function used for LOESS is thetri-cube weight function,

wheredis the distance of a given data point from the point on the curve being fitted, scaled to lie in the range from 0 to 1.[7]

However, any other weight function that satisfies the properties listed in Cleveland (1979) could also be used. The weight for a specific point in any localized subset of data is obtained by evaluating the weight function at the distance between that point and the point of estimation, after scaling the distance so that the maximum absolute distance over all of the points in the subset of data is exactly one.

Consider the following generalisation of the linear regression model with a metricon the target spacethat depends on two parameters,.Assume that the linear hypothesis is based oninput parameters and that, as customary in these cases, we embed the input spaceintoas,and consider the followingloss function

Here,is anreal matrix of coefficients,and the subscriptienumerates input and output vectors from a training set. Sinceis a metric, it is a symmetric, positive-definite matrix and, as such, there is another symmetric matrixsuch that.The above loss function can be rearranged into a trace by observing that.By arranging the vectorsandinto the columns of amatrixand anmatrixrespectively, the above loss function can then be written as

whereis the square diagonalmatrix whose entries are thes. Differentiating with respect toand setting the result equal to 0 one finds the extremal matrix equation

.

Assuming further that the square matrixis non-singular, the loss functionattains its minimum at

.

A typical choice foris theGaussian weight

.

Advantages[edit]

As discussed above, the biggest advantage LOESS has over many other methods is the process of fitting a model to the sample data does not begin with the specification of a function. Instead the analyst only has to provide a smoothing parameter value and the degree of the local polynomial. In addition, LOESS is very flexible, making it ideal for modeling complex processes for which no theoretical models exist. These two advantages, combined with the simplicity of the method, make LOESS one of the most attractive of the modern regression methods for applications that fit the general framework of least squares regression but which have a complex deterministic structure.

Although it is less obvious than for some of the other methods related to linear least squares regression, LOESS also accrues most of the benefits typically shared by those procedures. The most important of those is the theory for computing uncertainties for prediction and calibration. Many other tests and procedures used for validation of least squares models can also be extended to LOESS models[citation needed].

Disadvantages[edit]

LOESS makes less efficient use of data than other least squares methods. It requires fairly large, densely sampled data sets in order to produce good models. This is because LOESS relies on the local data structure when performing the local fitting. Thus, LOESS provides less complex data analysis in exchange for greater experimental costs.[7]

Another disadvantage of LOESS is the fact that it does not produce a regression function that is easily represented by a mathematical formula. This can make it difficult to transfer the results of an analysis to other people. In order to transfer the regression function to another person, they would need the data set and software for LOESS calculations. Innonlinear regression,on the other hand, it is only necessary to write down a functional form in order to provide estimates of the unknown parameters and the estimated uncertainty. Depending on the application, this could be either a major or a minor drawback to using LOESS. In particular, the simple form of LOESS can not be used for mechanistic modelling where fitted parameters specify particular physical properties of a system.

Finally, as discussed above, LOESS is a computationally intensive method (with the exception of evenly spaced data, where the regression can then be phrased as a non-causalfinite impulse responsefilter). LOESS is also prone to the effects of outliers in the data set, like other least squares methods. There is an iterative,robustversion of LOESS [Cleveland (1979)] that can be used to reduce LOESS' sensitivity tooutliers,but too many extreme outliers can still overcome even the robust method.

See also[edit]

References[edit]

Citations[edit]

  1. ^Fox & Weisberg 2018,Appendix.
  2. ^Harrell 2015,p. 29.
  3. ^Garimella 2017.
  4. ^"Savitzky–Golay filtering – MATLAB sgolayfilt".Mathworks.
  5. ^"scipy.signal.savgol_filter — SciPy v0.16.1 Reference Guide".Docs.scipy.org.
  6. ^Kristen Pavlik, US Environmental Protection Agency,Loess (or Lowess),Nutrient Steps,July 2016.
  7. ^abcdNIST,"LOESS (aka LOWESS)",section 4.1.4.4,NIST/SEMATECH e-Handbook of Statistical Methods,(accessed 14 April 2017)

Sources[edit]

External links[edit]

Implementations[edit]

Public DomainThis article incorporatespublic domain materialfrom theNational Institute of Standards and Technology