Struct stats::Frequencies

source ·
pub struct Frequencies<T> { /* private fields */ }
Expand description

A commutative data structure for exact frequency counts.

Implementations§

source§

impl<T: Eq + Hash> Frequencies<T>

source

pub fn new() -> Frequencies<T>

Create a new frequency table with no samples.

source

pub fn add(&mut self, v: T)

Add a sample to the frequency table.

source

pub fn count(&self, v: &T) -> u64

Return the number of occurrences of v in the data.

source

pub fn cardinality(&self) -> u64

Return the cardinality (number of unique elements) in the data.

source

pub fn mode(&self) -> Option<&T>

Returns the mode if one exists.

source

pub fn most_frequent(&self) -> (Vec<(&T, u64)>, u64)

Return a Vec of elements, their corresponding counts in descending order, and the total count.

source

pub fn least_frequent(&self) -> (Vec<(&T, u64)>, u64)

Return a Vec of elements, their corresponding counts in ascending order, and the total count.

source

pub fn par_frequent(&self, least: bool) -> (Vec<(&T, u64)>, u64)
where for<'a> (&'a T, u64): Send, T: Ord,

Return a Vec of elements, their corresponding counts in order based on the least parameter, and the total count. Uses parallel sort.

source

pub fn len(&self) -> usize

Returns the cardinality of the data.

source

pub fn is_empty(&self) -> bool

Returns true if there is no frequency/cardinality data.

source

pub fn unique_values(&self) -> UniqueValues<'_, T>

Return an iterator over the unique values of the data.

Trait Implementations§

source§

impl<T: Clone> Clone for Frequencies<T>

source§

fn clone(&self) -> Frequencies<T>

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: Eq + Hash> Commute for Frequencies<T>

source§

fn merge(&mut self, v: Frequencies<T>)

Merges the value other into self.
source§

fn consume<I: Iterator<Item = Self>>(&mut self, other: I)

Merges the values in the iterator into self.
source§

impl<T: Debug + Eq + Hash> Debug for Frequencies<T>

source§

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

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

impl<T: Eq + Hash> Default for Frequencies<T>

source§

fn default() -> Frequencies<T>

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

impl<T: Eq + Hash> Extend<T> for Frequencies<T>

source§

fn extend<I: IntoIterator<Item = T>>(&mut self, it: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<T: Eq + Hash> FromIterator<T> for Frequencies<T>

source§

fn from_iter<I: IntoIterator<Item = T>>(it: I) -> Frequencies<T>

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<T> Freeze for Frequencies<T>

§

impl<T> RefUnwindSafe for Frequencies<T>
where T: RefUnwindSafe,

§

impl<T> Send for Frequencies<T>
where T: Send,

§

impl<T> Sync for Frequencies<T>
where T: Sync,

§

impl<T> Unpin for Frequencies<T>
where T: Unpin,

§

impl<T> UnwindSafe for Frequencies<T>
where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

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

Initializes a with the given initializer. Read more
source§

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

Dereferences the given pointer. Read more
source§

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

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

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

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.