pub struct KdeResult {
pub x: Vec<f64>,
pub density: Vec<f64>,
pub bandwidth: f64,
}Expand description
Result of kernel density estimation.
Fields§
§x: Vec<f64>Evaluation points (x-axis).
density: Vec<f64>Density estimates at each evaluation point (y-axis).
bandwidth: f64Bandwidth used.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KdeResult
impl RefUnwindSafe for KdeResult
impl Send for KdeResult
impl Sync for KdeResult
impl Unpin for KdeResult
impl UnsafeUnpin for KdeResult
impl UnwindSafe for KdeResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more