Struct rolling_stats::Stats [−][src]
Stats object 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 Details of the underlying algorithm.
Fields
min: TMinimum value
max: TMaximum value
mean: TMean of sample set
std_dev: TStandard deviation of sample
count: usizeNumber of values collected
Implementations
impl<T> Stats<T> where
T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug, [src]
T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug,
pub fn new() -> Stats<T>[src]
Create a new stats object
pub fn update(&mut self, value: T)[src]
Update the stats object
pub fn merge<S: Iterator<Item = Stats<T>>>(stats: S) -> Stats<T>[src]
Merge a set of stats objects for analysis This performs a weighted averaging across the provided stats object, the output object should not be updated further.
Trait Implementations
impl<T: Clone + Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug> Clone for Stats<T>[src]
impl<T: Debug + Float + Zero + One + AddAssign + FromPrimitive + PartialEq> Debug for Stats<T>[src]
impl<'de, T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug> Deserialize<'de> for Stats<T> where
T: Deserialize<'de>,
T: Default, [src]
T: Deserialize<'de>,
T: Default,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl<T> Display for Stats<T> where
T: Display + Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug, [src]
T: Display + Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug,
impl<T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug> Serialize for Stats<T> where
T: Serialize, [src]
T: Serialize,
Auto Trait Implementations
impl<T> RefUnwindSafe for Stats<T> where
T: RefUnwindSafe, [src]
T: RefUnwindSafe,
impl<T> Send for Stats<T> where
T: Send, [src]
T: Send,
impl<T> Sync for Stats<T> where
T: Sync, [src]
T: Sync,
impl<T> Unpin for Stats<T> where
T: Unpin, [src]
T: Unpin,
impl<T> UnwindSafe for Stats<T> where
T: UnwindSafe, [src]
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,