pub trait Bandwidth<F: KDEFloat> { // Required method fn bandwidth(&self, data: &[F]) -> F; }
Shared behavior for bandwidth selection strategies.
Returns a bandwidth value estimated from the points in data.
data