kernel-density-estimation 0.2.0

Kernel density estimation in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod multivariate;
pub mod univariate;

use crate::internal::Sealed;

/// Representation of a kernel density estimate with custom bandwith selector and kernel function.
#[derive(Clone, Debug)]
pub struct KernelDensityEstimator<T, B, K> {
    observations: T,
    bandwidth: B,
    kernel: K,
}

impl<T, B, K> Sealed for KernelDensityEstimator<T, B, K> {}