kernel_density_estimation/kde/mod.rs
1pub mod multivariate;
2pub mod univariate;
3
4use crate::internal::Sealed;
5
6/// Representation of a kernel density estimate with custom bandwith selector and kernel function.
7#[derive(Clone, Debug)]
8pub struct KernelDensityEstimator<T, B, K> {
9 observations: T,
10 bandwidth: B,
11 kernel: K,
12}
13
14impl<T, B, K> Sealed for KernelDensityEstimator<T, B, K> {}