pub struct RStatWorkspace { /* private fields */ }
Implementations
sourceimpl RStatWorkspace
impl RStatWorkspace
pub fn new() -> Option<Self>
pub fn n(&self) -> usize
pub fn add(&mut self, x: f64) -> Value
pub fn min(&self) -> f64
pub fn max(&self) -> f64
pub fn mean(&self) -> f64
pub fn variance(&self) -> f64
pub fn sd(&self) -> f64
pub fn sd_mean(&self) -> f64
pub fn median(&mut self) -> f64
pub fn skew(&self) -> f64
pub fn kurtosis(&self) -> f64
pub fn reset(&mut self) -> Value
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RStatWorkspace
impl !Send for RStatWorkspace
impl !Sync for RStatWorkspace
impl Unpin for RStatWorkspace
impl UnwindSafe for RStatWorkspace
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more