Struct ndhistogram::value::Mean

source ·
pub struct Mean<T = f64, O = f64, C = u32> { /* private fields */ }
Expand description

This ndhistogram bin value computes the mean of the data samples provided when filling.

Mean has 3 type parameters:

  • the type that is being averaged,
  • the type of the output when calculating the mean and its uncertainty,
  • the type that counts the number of fills.

This allows, for example, integers to be used when filling or counting, but a floating point type to compute the mean. In most cases, you will only need to specify the first type as sensible defaults are set for the second two type parameters.

Example

use ndhistogram::{ndhistogram, Histogram, axis::Uniform, value::Mean};

// create a histogram and fill it with some values
let mut hist = ndhistogram!(Uniform::new(10, 0.0, 10.0); Mean<i32>);
hist.fill_with(&0.0, 1);
hist.fill_with(&0.0, 2);
hist.fill_with(&0.0, 3);

let mean = hist.value(&0.0);
assert_eq!(mean.unwrap().get(), 2.0); // should be the mean of [1,2,3]

Implementations§

source§

impl<C, T, O> Mean<T, O, C>where O: From<T> + From<C> + NumOps + Signed + Copy, C: Copy, T: Copy,

source

pub fn new<I>(values: I) -> Selfwhere I: IntoIterator<Item = T>, Self: FillWith<T> + Default,

Factory method to create a Mean from a set of values.

Usually this will not be used as a Histogram will be responsible for creating and filling values.

source

pub fn get(&self) -> O

Get the current value of the mean.

source

pub fn mean(&self) -> <O as Div>::Output

Get the current value of the mean.

source

pub fn num_samples(&self) -> C

Get the number of times the mean value has been filled.

source

pub fn variance_of_samples(&self) -> O

Compute the variance of the samples.

source

pub fn standard_deviation_of_samples(&self) -> Owhere O: Float,

The square root of the variance of the samples.

source

pub fn variance_of_mean(&self) -> O

The square of the standard error of the mean.

source

pub fn standard_error_of_mean(&self) -> Owhere O: Float,

Compute the standard error of the mean.

Trait Implementations§

source§

impl<T: Clone, O: Clone, C: Clone> Clone for Mean<T, O, C>

source§

fn clone(&self) -> Mean<T, O, C>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, O: Debug, C: Debug> Debug for Mean<T, O, C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default, O: Default, C: Default> Default for Mean<T, O, C>

source§

fn default() -> Mean<T, O, C>

Returns the “default value” for a type. Read more
source§

impl<'de, T, O, C> Deserialize<'de> for Mean<T, O, C>where T: Deserialize<'de>, C: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T, C, O> FillWith<T> for Mean<T, O, C>where T: Copy + AddAssign + Mul<Output = T>, C: AddAssign + One,

source§

fn fill_with(&mut self, data: T)

Fill this value with some data. For a simple number type means adding the weight.
source§

impl<T: Hash, O: Hash, C: Hash> Hash for Mean<T, O, C>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T: Ord, O: Ord, C: Ord> Ord for Mean<T, O, C>

source§

fn cmp(&self, other: &Mean<T, O, C>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<T: PartialEq, O: PartialEq, C: PartialEq> PartialEq<Mean<T, O, C>> for Mean<T, O, C>

source§

fn eq(&self, other: &Mean<T, O, C>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: PartialOrd, O: PartialOrd, C: PartialOrd> PartialOrd<Mean<T, O, C>> for Mean<T, O, C>

source§

fn partial_cmp(&self, other: &Mean<T, O, C>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T, O, C> Serialize for Mean<T, O, C>where T: Serialize, C: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T: Copy, O: Copy, C: Copy> Copy for Mean<T, O, C>

source§

impl<T: Eq, O: Eq, C: Eq> Eq for Mean<T, O, C>

source§

impl<T, O, C> StructuralEq for Mean<T, O, C>

source§

impl<T, O, C> StructuralPartialEq for Mean<T, O, C>

Auto Trait Implementations§

§

impl<T, O, C> RefUnwindSafe for Mean<T, O, C>where C: RefUnwindSafe, O: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, O, C> Send for Mean<T, O, C>where C: Send, O: Send, T: Send,

§

impl<T, O, C> Sync for Mean<T, O, C>where C: Sync, O: Sync, T: Sync,

§

impl<T, O, C> Unpin for Mean<T, O, C>where C: Unpin, O: Unpin, T: Unpin,

§

impl<T, O, C> UnwindSafe for Mean<T, O, C>where C: UnwindSafe, O: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,