Kernel Density Estimation

Notes

  • Most popular technique for estimating probability densities of random variables
  • A chosen kernel function is applied for each point in the finite dataset
  • Many possible kernel functions, such as, but not limited to:
    • Gaussian (normal)
    • Triangular
    • Rectangular (uniform/box)
    • Epanechnikov (parabolic)
    • Biweight (quartic)
    • Triweight
    • Tricube
    • Cosine
  • One can choose different kernel widths
  • Adaptive KDE

Formula

f(x)=1nhi=1nK(xxih)f(x) = \frac{1}{nh}\sum_{i=1}^{n}K(\frac{x-x_i}{h})

where nn is the number of sample, hh is the bandwidth and KK is the kernel function.

References

Implementations

Articles & Papers


Backlinks