[][src]Struct rolling_stats::Stats

pub struct Stats<T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug> {
    pub count: usize,
    pub min: T,
    pub max: T,
    pub mean: T,
    pub std_dev: T,
    // some fields omitted
}

Stats is an object that calculates continuous min/max/mean/deviation for tracking of time varying statistics See: https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_Online_algorithm for the algorithm

Fields

count: usize

Number of values collected

min: T

Minimum value

max: T

Maximum value

mean: T

Mean of sample set

std_dev: T

Standard deviation of sample

Methods

impl<T> Stats<T> where
    T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug
[src]

pub fn new() -> Stats<T>[src]

pub fn update(&mut self, value: T)[src]

Auto Trait Implementations

impl<T> Send for Stats<T> where
    T: Send

impl<T> Sync for Stats<T> where
    T: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]