Skip to main content

Pareto

Struct Pareto 

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

Implements the Pareto distribution

§Examples

use statrs::distribution::{Pareto, Continuous};
use statrs::statistics::Distribution;
use statrs::prec;

let p = Pareto::new(1.0, 2.0).unwrap();
assert_eq!(p.mean().unwrap(), 2.0);
assert!(prec::almost_eq(p.pdf(2.0), 0.25, 1e-15));

Implementations§

Source§

impl Pareto

Source

pub fn new(scale: f64, shape: f64) -> Result<Pareto, ParetoError>

Constructs a new Pareto distribution with scale scale, and shape shape.

§Errors

Returns an error if any of scale or shape are NaN. Returns an error if scale <= 0.0 or shape <= 0.0

§Examples
use statrs::distribution::Pareto;

let mut result = Pareto::new(1.0, 2.0);
assert!(result.is_ok());

result = Pareto::new(0.0, 0.0);
assert!(result.is_err());
Source

pub fn scale(&self) -> f64

Returns the scale of the Pareto distribution

§Examples
use statrs::distribution::Pareto;

let n = Pareto::new(1.0, 2.0).unwrap();
assert_eq!(n.scale(), 1.0);
Source

pub fn shape(&self) -> f64

Returns the shape of the Pareto distribution

§Examples
use statrs::distribution::Pareto;

let n = Pareto::new(1.0, 2.0).unwrap();
assert_eq!(n.shape(), 2.0);

Trait Implementations§

Source§

impl Clone for Pareto

Source§

fn clone(&self) -> Pareto

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 Pareto

Source§

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

Calculates the probability density function for the Pareto distribution at x

§Formula
if x < x_m {
    0
} else {
    (α * x_m^α)/(x^(α + 1))
}

where x_m is the scale and α is the shape

Source§

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

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

§Formula
if x < x_m {
    f64::NEG_INFINITY
} else {
    ln(α) + α*ln(x_m) - (α + 1)*ln(x)
}

where x_m is the scale and α is the shape

Source§

impl ContinuousCDF<f64, f64> for Pareto

Source§

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

Calculates the cumulative distribution function for the Pareto distribution at x

§Formula
if x < x_m {
    0
} else {
    1 - (x_m/x)^α
}

where x_m is the scale and α is the shape

Source§

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

Calculates the survival function for the Pareto distribution at x

§Formula
if x < x_m {
    1
} else {
    (x_m/x)^α
}

where x_m is the scale and α is the shape

Source§

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

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

§Formula
x_m / (1 - x)^(1 / α)

where x_m is the scale and α is the shape

Source§

impl Debug for Pareto

Source§

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

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

impl Display for Pareto

Source§

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

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

impl Distribution<f64> for Pareto

Available on crate feature rand only.
Source§

fn sample<R: Rng + ?Sized>(&self, rng: &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 Pareto

Source§

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

Returns the mean of the Pareto distribution

§Formula
if α <= 1 {
    f64::INFINITY
} else {
    (α * x_m)/(α - 1)
}

where x_m is the scale and α is the shape

Source§

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

Returns the variance of the Pareto distribution

§Formula
if α <= 2 {
    f64::INFINITY
} else {
    (x_m/(α - 1))^2 * (α/(α - 2))
}

where x_m is the scale and α is the shape

Source§

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

Returns the entropy for the Pareto distribution

§Formula
ln(α/x_m) - 1/α - 1

where x_m is the scale and α is the shape

Source§

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

Returns the skewness of the Pareto distribution

§Panics

If α <= 3.0

where α is the shape

§Formula
    (2*(α + 1)/(α - 3))*sqrt((α - 2)/α)

where α is the shape

Source§

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

Returns the standard deviation, if it exists. Read more
Source§

impl Max<f64> for Pareto

Source§

fn max(&self) -> f64

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

§Formula
f64::INFINITY
Source§

impl Median<f64> for Pareto

Source§

fn median(&self) -> f64

Returns the median of the Pareto distribution

§Formula
x_m*2^(1/α)

where x_m is the scale and α is the shape

Source§

impl Min<f64> for Pareto

Source§

fn min(&self) -> f64

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

§Formula
x_m

where x_m is the scale

Source§

impl Mode<Option<f64>> for Pareto

Source§

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

Returns the mode of the Pareto distribution

§Formula
x_m

where x_m is the scale

Source§

impl PartialEq for Pareto

Source§

fn eq(&self, other: &Pareto) -> 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 Pareto

Source§

impl StructuralPartialEq for Pareto

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,