Stats

Struct Stats 

Source
pub struct Stats;

Implementations§

Source§

impl Stats

Source

pub fn mean(data: &[f64]) -> Option<f64>

Source

pub fn median(data: &[f64]) -> Option<f64>

Source

pub fn mode(data: &[f64]) -> Option<Vec<f64>>

Source

pub fn variance(data: &[f64]) -> Option<f64>

Source

pub fn std_dev(data: &[f64]) -> Option<f64>

Source

pub fn range(data: &[f64]) -> Option<f64>

Source

pub fn quartiles(data: &[f64]) -> Option<(f64, f64, f64)>

Source

pub fn percentile(data: &[f64], p: f64) -> Option<f64>

Source

pub fn skewness(data: &[f64]) -> Option<f64>

Source

pub fn kurtosis(data: &[f64]) -> Option<f64>

Source

pub fn covariance(x: &[f64], y: &[f64]) -> Option<f64>

Source

pub fn correlation(x: &[f64], y: &[f64]) -> Option<f64>

Source

pub fn z_scores(data: &[f64]) -> Option<Vec<f64>>

Source

pub fn mad(data: &[f64]) -> Option<f64>

Source

pub fn winsorized_mean(data: &[f64], trim: f64) -> Option<f64>

Source

pub fn moving_average(data: &[f64], window: usize) -> Option<Vec<f64>>

Source

pub fn exponential_smoothing(data: &[f64], alpha: f64) -> Option<Vec<f64>>

Source

pub fn bonferroni_correction(p_values: &[f64]) -> Option<Vec<f64>>

Source

pub fn benjamini_hochberg(p_values: &[f64]) -> Option<Vec<f64>>

Source

pub fn kernel_density_estimation( data: &[f64], x: f64, bandwidth: f64, ) -> Option<f64>

Source

pub fn bayesian_update( prior: f64, likelihood: f64, evidence: f64, ) -> Option<f64>

Source

pub fn entropy(probabilities: &[f64]) -> Option<f64>

Source

pub fn kullback_leibler_divergence(p: &[f64], q: &[f64]) -> Option<f64>

Source§

impl Stats

Source

pub fn normal_pdf(x: f64, mean: f64, std_dev: f64) -> f64

Source

pub fn cohens_d(data1: &[f64], data2: &[f64]) -> Option<f64>

Source

pub fn linear_regression(x: &[f64], y: &[f64]) -> Option<(f64, f64)>

Source

pub fn autocorrelation(data: &[f64], lag: usize) -> Option<f64>

Source

pub fn binomial_pmf(k: u64, n: u64, p: f64) -> f64

Trait Implementations§

Source§

impl Clone for Stats

Source§

fn clone(&self) -> Stats

Returns a duplicate 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 Debug for Stats

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Stats

§

impl RefUnwindSafe for Stats

§

impl Send for Stats

§

impl Sync for Stats

§

impl Unpin for Stats

§

impl UnwindSafe for Stats

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

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>,

Source§

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>,

Source§

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.