Kernel density estimation


In statistics, kernel density estimation is a non-parametric way to estimate the probability density function of a random variable. Kernel density estimation is a fundamental data smoothing problem where inferences about the population are made, based on a finite data sample. In some fields such as signal processing and econometrics it is also termed the Parzen–Rosenblatt window method, after Emanuel Parzen and Murray Rosenblatt, who are usually credited with independently creating it in its current form. One of the famous applications of kernel density estimation is in estimating the class-conditional marginal densities of data when using a naive Bayes classifier, which can improve its prediction accuracy dramatically.

Definition

Let be a univariate independent and identically distributed sample drawn from some distribution with an unknown density ƒ. We are interested in estimating the shape of this function ƒ. Its kernel density estimator is
where K is the kernel — a non-negative function — and is a smoothing parameter called the bandwidth. A kernel with subscript h is called the scaled kernel and defined as. Intuitively one wants to choose h as small as the data will allow; however, there is always a trade-off between the bias of the estimator and its variance. The choice of bandwidth is discussed in more detail below.
A range of kernel functions are commonly used: uniform, triangular, biweight, triweight, Epanechnikov, normal, and others. The Epanechnikov kernel is optimal in a mean square error sense, though the loss of efficiency is small for the kernels listed previously. Due to its convenient mathematical properties, the normal kernel is often used, which means, where ϕ is the standard normal density function.
The construction of a kernel density estimate finds interpretations in fields outside of density estimation. For example, in thermodynamics, this is equivalent to the amount of heat generated when heat kernels are placed at each data point locations xi. Similar methods are used to construct discrete Laplace operators on point clouds for manifold learning.

Example

Kernel density estimates are closely related to histograms, but can be endowed with properties such as smoothness or continuity by using a suitable kernel. To see this, we compare the construction of histogram and kernel density estimators, using these 6 data points:
Sample123456
Value-2.1-1.3-0.41.95.16.2

For the histogram, first the horizontal axis is divided into sub-intervals or bins which cover the range of the data. In this case, we have six bins each of width 2. Whenever a data point falls inside this interval, we place a box of height 1/12. If more than one data point falls inside the same bin, we stack the boxes on top of each other.
For the kernel density estimate, we place a normal kernel with standard deviation 2.25 on each of the data points xi. The kernels are summed to make the kernel density estimate. The smoothness of the kernel density estimate is evident compared to the discreteness of the histogram, as kernel density estimates converge faster to the true underlying density for continuous random variables.

Bandwidth selection

The bandwidth of the kernel is a free parameter which exhibits a strong influence on the resulting estimate. To illustrate its effect, we take a simulated random sample from the standard normal distribution. The grey curve is the true density. In comparison, the red curve is undersmoothed since it contains too many spurious data artifacts arising from using a bandwidth h = 0.05, which is too small. The green curve is oversmoothed since using the bandwidth h = 2 obscures much of the underlying structure. The black curve with a bandwidth of h = 0.337 is considered to be optimally smoothed since its density estimate is close to the true density. An extreme situation is encountered in the limit , where the estimate is a sum of n delta functions centered at the coordinates of analyzed samples. In the other extreme limit the estimate retains the shape of the used kernel, centered on the mean of the samples.
The most common optimality criterion used to select this parameter is the expected L2 risk function, also termed the mean integrated squared error:
Under weak assumptions on ƒ and K,,
MISE = AMISE + o where o is the little o notation.
The AMISE is the Asymptotic MISE which consists of the two leading terms
where for a function g,
and ƒ' is the second derivative of ƒ. The minimum of this AMISE is the solution to this differential equation
or
Neither the AMISE nor the
hAMISE formulas are able to be used directly since they involve the unknown density function ƒ or its second derivative ƒ
', so a variety of automatic, data-based methods have been developed for selecting the bandwidth. Many review studies have been carried out to compare their efficacies, with the general consensus that the plug-in selectors
and cross validation selectors are the most useful over a wide range of data sets.
Substituting any bandwidth h which has the same asymptotic order n−1/5 as hAMISE into the AMISE
gives that AMISE = O, where O is the big o notation. It can be shown that, under weak assumptions, there cannot exist a non-parametric estimator that converges at a faster rate than the kernel estimator. Note that the n−4/5 rate is slower than the typical n−1 convergence rate of parametric methods.
If the bandwidth is not held fixed, but is varied depending upon the location of either the estimate or the samples, this produces a particularly powerful method termed adaptive or variable bandwidth kernel density estimation.
Bandwidth selection for kernel density estimation of heavy-tailed distributions is relatively difficult.

A rule-of-thumb bandwidth estimator

If Gaussian basis functions are used to approximate univariate data, and the underlying density being estimated is Gaussian, the optimal choice for h is:
In order to make the h value more robust to make the fitness well for both long-tailed and skew distribution and bimodal mixture distribution, it is better to substitute the value of with another parameter A, which is given by:
Another modification that will improve the model is to reduce the factor from 1.06 to 0.9. Then the final formula would be:
where is the standard deviation of the samples, n is the sample size. IQR is the interquartile range.
This approximation is termed the normal distribution approximation, Gaussian approximation, or Silverman's rule of thumb.
While this rule of thumb is easy to compute, it should be used with caution as it can yield widely inaccurate estimates when the density is not close to being normal. For example, consider estimating the bimodal Gaussian mixture:
from a sample of 200 points. The figure on the right below shows the true density and two kernel density estimates—one using the rule-of-thumb bandwidth, and the other using
a solve-the-equation bandwidth. The estimate based on the rule-of-thumb bandwidth is significantly oversmoothed.
The Matlab script for this example uses
and is given below.

% Data
randn % Used for reproducibility
data = ; % Two Normals mixed
% True
phi = @ exp/sqrt; % Normal Density
tpdf = @ phi/2+phi/2; % True Density
% Kernel
h = std*^; % Bandwidth estimated by Silverman's Rule of Thumb
kernel = @ mean/h); % Kernel Density
kpdf = @ arrayfun; % Elementwise application
% Plot
figure, clf, hold on
x = linspace; % Linear Space
plot % Plot True Density
plot % Plot Kernel Density with Silverman's Rule of Thumb
kde % Plot Kernel Density with Solve-the-Equation Bandwidth

  1. The same code with R language
  2. ` Data
set.seed #Used for reproducibility
data = c,rnorm) #Two Normals mixed
  1. ` True
phi = function exp/sqrt #Normal Density
tpdf = function phi/2+phi/2 #True Density
  1. ` Kernel
h = sd*^ #Bandwidth estimated by Silverman's Rule of Thumb
Kernel2 = function mean/h) #Kernel Density
kpdf = function sapply #Elementwise application
  1. ` Plot
x=seq #Linear Space
plot,type="l",ylim=c #Plot True Density
par
plot,type="l",ylim=c #Plot Kernel Density with Silverman's Rule of Thumb

Relation to the characteristic function density estimator

Given the sample, it is natural to estimate the characteristic function as
Knowing the characteristic function, it is possible to find the corresponding probability density function through the Fourier transform formula. One difficulty with applying this inversion formula is that it leads to a diverging integral, since the estimate is unreliable for large t’s. To circumvent this problem, the estimator is multiplied by a damping function, which is equal to 1 at the origin and then falls to 0 at infinity. The “bandwidth parameter” h controls how fast we try to dampen the function. In particular when h is small, then ψh will be approximately one for a large range of t’s, which means that remains practically unaltered in the most important region of t’s.
The most common choice for function ψ is either the uniform function, which effectively means truncating the interval of integration in the inversion formula to, or the Gaussian function. Once the function ψ has been chosen, the inversion formula may be applied, and the density estimator will be
where K is the Fourier transform of the damping function ψ. Thus the kernel density estimator coincides with the characteristic function density estimator.

Geometric and topological features

We can extend the definition of the mode to a local sense and define the local modes:
Namely, is the collection of points for which the density function is locally maximized. A natural estimator of is a plug-in from KDE, where and are KDE version of and. Under mild assumptions, is a consistent estimator of. Note that one can use the mean shift algorithm to compute the estimator numerically.

Statistical implementation

A non-exhaustive list of software implementations of kernel density estimators includes:
A free MATLAB toolbox with implementation of kernel regression, kernel density estimation, kernel estimation of hazard function and many others is available on .