Jump to content

Kernel smoother: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
mNo edit summary
Line 1: Line 1:

A '''kernel smoother''' is a [[statistics|statistical]] technique for estimating a real valued [[function (mathematics)|function]] <math>f(X)\,\,\left( X\in \mathbb{R}^{p} \right)</math> by using its noisy observations, when [[non-parametric statistics|no parametric model]] for this function is known. The estimated function is smooth, and the level of smoothness is set by a single parameter.
A '''kernel smoother''' is a [[statistics|statistical]] technique for estimating a real valued [[function (mathematics)|function]] <math>f(X)\,\,\left( X\in \mathbb{R}^{p} \right)</math> by using its noisy observations, when [[non-parametric statistics|no parametric model]] for this function is known. The estimated function is smooth, and the level of smoothness is set by a single parameter.


Line 29: Line 30:


In the following sections, we describe some particular cases of kernel smoothers.
In the following sections, we describe some particular cases of kernel smoothers.

==Gaussian Kernel smoother==



One popular and easy way is to use a kernel function. This kernel function transforms the nonlinear problem to the linear regression (smoothing) problem. The below equation is a general linear kernel regression function.

:<math> y^* = \frac{\sum^N_{i=1}K(x^*,x_i)y_i}{\sum^N_{i=1}K(x^*,x_i)}</math>

Here <math>x_i</math> is the i th training data input, <math>y_i</math> is the i th training data output, K is a kernel function. <math>x^*</math> is a query point, <math>y^*</math> is the predicted output.

The Gaussian Kernel is one of the most common kernel. (Its another name is radial basis function (RBF)) The kernel is expressed with the below equation.

:<math> K(x^*,x_i)=\exp\left(-\frac{(x^*-x_i)^2}{2b^2}\right) </math>

Here, b is the length scale for the input space.

[[File:Gaussian kernel regression.png]]

==Matlab code for Gaussian Kernel Regression ==
From the following website, http://youngmok.com/gaussian-kernel-regression-with-matlab-code/ it is possible to download Matlab codes for the Gaussian Kernel Regression.



==Nearest neighbor smoother==
==Nearest neighbor smoother==

Revision as of 06:53, 21 February 2014

A kernel smoother is a statistical technique for estimating a real valued function by using its noisy observations, when no parametric model for this function is known. The estimated function is smooth, and the level of smoothness is set by a single parameter.

This technique is most appropriate for low dimensional (p < 3) data visualization purposes. Actually, the kernel smoother represents the set of irregular data points as a smooth line or surface.

Definitions

Let be a kernel defined by

where:

  • is the Euclidean norm
  • is a parameter (kernel radius)
  • D(t) typically is a positive real valued function, which value is decreasing (or not increasing) for the increasing distance between the X and X0.

Popular kernels used for smoothing include

Let be a continuous function of X. For each , the Nadaraya-Watson kernel-weighted average (smooth Y(X) estimation) is defined by

where:

  • N is the number of observed points
  • Y(Xi) are the observations at Xi points.

In the following sections, we describe some particular cases of kernel smoothers.

Gaussian Kernel smoother

One popular and easy way is to use a kernel function. This kernel function transforms the nonlinear problem to the linear regression (smoothing) problem. The below equation is a general linear kernel regression function.

Here is the i th training data input, is the i th training data output, K is a kernel function. is a query point, is the predicted output.

The Gaussian Kernel is one of the most common kernel. (Its another name is radial basis function (RBF)) The kernel is expressed with the below equation.

Here, b is the length scale for the input space.

Matlab code for Gaussian Kernel Regression

From the following website, http://youngmok.com/gaussian-kernel-regression-with-matlab-code/ it is possible to download Matlab codes for the Gaussian Kernel Regression.


Nearest neighbor smoother

The idea of the nearest neighbor smoother is the following. For each point X0, take m nearest neighbors and estimate the value of Y(X0) by averaging the values of these neighbors.

Formally, , where is the mth closest to X0 neighbor, and

Example:

In this example, X is one-dimensional. For each X0, the is an average value of 16 closest to X0 points (denoted by red). The result is not smooth enough.

Kernel average smoother

The idea of the kernel average smoother is the following. For each data point X0, choose a constant distance size λ (kernel radius, or window width for p = 1 dimension), and compute a weighted average for all data points that are closer than to X0 (the closer to X0 points get higher weights).

Formally, and D(t) is one of the popular kernels.

Example:

For each X0 the window width is constant, and the weight of each point in the window is schematically denoted by the yellow figure in the graph. It can be seen that the estimation is smooth, but the boundary points are biased. The reason for that is the non-equal number of points (from the right and from the left to the X0) in the window, when the X0 is close enough to the boundary.

Local linear regression

In the two previous sections we assumed that the underlying Y(X) function is locally constant, therefore we were able to use the weighted average for the estimation. The idea of local linear regression is to fit locally a straight line (or a hyperplane for higher dimensions), and not the constant (horizontal line). After fitting the line, the estimation is provided by the value of this line at X0 point. By repeating this procedure for each X0, one can get the estimation function . Like in previous section, the window width is constant Formally, the local linear regression is computed by solving a weighted least square problem.

For one dimension (p = 1):

The closed form solution is given by:

where:

Example:

The resulting function is smooth, and the problem with the biased boundary points is solved.

Local linear regression can be applied to any dimensional space, though the question of what is a local neighborhood becomes more complicated. It is common to use k nearest training points to a test point to fit the local linear regression. This can lead to high variance of the fitted function. To bound the variance, the set of training points should contain the test point in their convex hull (see Gupta et al. reference).

Local polynomial regression

Instead of fitting locally linear functions, one can fit polynomial functions.

For p=1, one should minimize:

with

In general case (p>1), one should minimize:

See also

References