gaussiankde
GaussianKDE, or Gaussian kernel density estimation, is a non-parametric method for estimating the probability density function of a continuous random variable. It constructs a smooth density by placing a Gaussian kernel centered at each observed data point and summing these contributions. This approach makes few assumptions about the underlying distribution and can reveal multimodal structure in the data.
The estimator f_hat(x) is typically written as a normalized sum of Gaussian kernels: f_hat(x) = (1/(n h))
GaussianKDE can be extended to higher dimensions, but performance and accuracy deteriorate with increasing dimensionality due
Software implementations widely support GaussianKDE. In Python, libraries offer Gaussian kernel density estimation through functions such