Skip to main content

Gumbel

Struct Gumbel 

Source
pub struct Gumbel { /* private fields */ }
Expand description

Implements the Gumbel distribution, also known as the type-I generalized extreme value distribution.

§Examples

use statrs::distribution::{Gumbel, Continuous};
use statrs::{consts::EULER_MASCHERONI, statistics::Distribution};

let n = Gumbel::new(0.0, 1.0).unwrap();
assert_eq!(n.location(), 0.0);
assert_eq!(n.skewness().unwrap(), 1.13955);
assert_eq!(n.pdf(0.0), 0.36787944117144233);

Implementations§

Source§

impl Gumbel

Source

pub fn new(location: f64, scale: f64) -> Result<Self, GumbelError>

Constructs a new Gumbel distribution with the given location and scale.

§Errors

Returns an error if location or scale are NaN or scale <= 0.0

§Examples
use statrs::distribution::Gumbel;

let mut result = Gumbel::new(0.0, 1.0);
assert!(result.is_ok());

result = Gumbel::new(0.0, -1.0);
assert!(result.is_err());
Source

pub fn location(&self) -> f64

Returns the location of the Gumbel distribution

§Examples
use statrs::distribution::Gumbel;

let n = Gumbel::new(0.0, 1.0).unwrap();
assert_eq!(n.location(), 0.0);
Source

pub fn scale(&self) -> f64

Returns the scale of the Gumbel distribution

§Examples
use statrs::distribution::Gumbel;

let n = Gumbel::new(0.0, 1.0).unwrap();
assert_eq!(n.scale(), 1.0);

Trait Implementations§

Source§

impl Clone for Gumbel

Source§

fn clone(&self) -> Gumbel

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 Continuous<f64, f64> for Gumbel

Source§

fn pdf(&self, x: f64) -> f64

Calculates the probability density function for the Gumbel distribution at x

§Formula
(1/β) * exp(-(x - μ)/β) * exp(-exp(-(x - μ)/β))

where μ is the location, β is the scale

Source§

fn ln_pdf(&self, x: f64) -> f64

Calculates the log probability density function for the Gumbel distribution at x

§Formula
ln((1/β) * exp(-(x - μ)/β) * exp(-exp(-(x - μ)/β)))

where μ is the location, β is the scale

Source§

impl ContinuousCDF<f64, f64> for Gumbel

Source§

fn cdf(&self, x: f64) -> f64

Calculates the cumulative distribution function for the Gumbel distribution at x

§Formula
e^(-e^(-(x - μ) / β))

where μ is the location and β is the scale

Source§

fn inverse_cdf(&self, p: f64) -> f64

Calculates the inverse cumulative distribution function for the Gumbel distribution at x

§Formula
μ - β ln(-ln(p)) where 0 < p < 1
-INF             where p <= 0
INF              otherwise

where μ is the location and β is the scale

Source§

fn sf(&self, x: f64) -> f64

Calculates the survival function for the Gumbel distribution at x

§Formula
1 - e^(-e^(-(x - μ) / β))

where μ is the location and β is the scale

Source§

impl Debug for Gumbel

Source§

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

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

impl Display for Gumbel

Source§

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

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

impl Distribution<f64> for Gumbel

Available on crate feature rand only.
Source§

fn sample<R: Rng + ?Sized>(&self, r: &mut R) -> f64

Generate a random value of T, using rng as the source of randomness.
Source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
Source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
Source§

impl Distribution<f64> for Gumbel

Source§

fn entropy(&self) -> Option<f64>

Returns the entropy of the Gumbel distribution

§Formula
ln(β) + γ + 1

where β is the scale and γ is the Euler-Mascheroni constant (approx 0.57721)

Source§

fn mean(&self) -> Option<f64>

Returns the mean of the Gumbel distribution

§Formula
μ + γβ

where μ is the location, β is the scale and γ is the Euler-Mascheroni constant (approx 0.57721)

Source§

fn skewness(&self) -> Option<f64>

Returns the skewness of the Gumbel distribution

§Formula
12 * sqrt(6) * ζ(3) / π^3 ≈ 1.13955

ζ(3) is the Riemann zeta function evaluated at 3 (approx 1.20206) and π is the constant PI (approx 3.14159)

This approximately evaluates to 1.13955

Source§

fn variance(&self) -> Option<f64>

Returns the variance of the Gumbel distribution

§Formula
(π^2 / 6) * β^2

where β is the scale and π is the constant PI (approx 3.14159)

Source§

fn std_dev(&self) -> Option<f64>

Returns the standard deviation of the Gumbel distribution

§Formula
β * π / sqrt(6)

where β is the scale and π is the constant PI (approx 3.14159)

Source§

impl Max<f64> for Gumbel

Source§

fn max(&self) -> f64

Returns the maximum value in the domain of the Gumbel distribution representable by a double precision float

§Formula
f64::INFINITY
Source§

impl Median<f64> for Gumbel

Source§

fn median(&self) -> f64

Returns the median of the Gumbel distribution

§Formula
μ - β ln(ln(2))

where μ is the location and β is the scale parameter

Source§

impl Min<f64> for Gumbel

Source§

fn min(&self) -> f64

Returns the minimum value in the domain of the Gumbel distribution representable by a double precision float

§Formula
NEG_INF
Source§

impl Mode<f64> for Gumbel

Source§

fn mode(&self) -> f64

Returns the mode of the Gumbel distribution

§Formula
μ

where μ is the location

Source§

impl PartialEq for Gumbel

Source§

fn eq(&self, other: &Gumbel) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Gumbel

Source§

impl StructuralPartialEq for Gumbel

Auto Trait Implementations§

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,