Struct statrs::distribution::Weibull [−][src]
pub struct Weibull { /* fields omitted */ }
Implements the Weibull distribution
Examples
use statrs::distribution::{Weibull, Continuous}; use statrs::statistics::Mean; use statrs::prec; let n = Weibull::new(10.0, 1.0).unwrap(); assert!(prec::almost_eq(n.mean(), 0.95135076986687318362924871772654021925505786260884, 1e-15)); assert_eq!(n.pdf(1.0), 3.6787944117144232159552377016146086744581113103177);
Implementations
impl Weibull
[src]
impl Weibull
[src]pub fn new(shape: f64, scale: f64) -> Result<Weibull>
[src]
Constructs a new weibull distribution with a shape (k) of shape
and a scale (λ) of scale
Errors
Returns an error if shape
or scale
are NaN
.
Returns an error if shape <= 0.0
or scale <= 0.0
Examples
use statrs::distribution::Weibull; let mut result = Weibull::new(10.0, 1.0); assert!(result.is_ok()); result = Weibull::new(0.0, 0.0); assert!(result.is_err());
pub fn shape(&self) -> f64
[src]
Returns the shape of the weibull distribution
Examples
use statrs::distribution::Weibull; let n = Weibull::new(10.0, 1.0).unwrap(); assert_eq!(n.shape(), 10.0);
pub fn scale(&self) -> f64
[src]
Returns the scale of the weibull distribution
Examples
use statrs::distribution::Weibull; let n = Weibull::new(10.0, 1.0).unwrap(); assert_eq!(n.scale(), 1.0);
Trait Implementations
impl Continuous<f64, f64> for Weibull
[src]
impl Continuous<f64, f64> for Weibull
[src]fn pdf(&self, x: f64) -> f64
[src]
Calculates the probability density function for the weibull
distribution at x
Formula
(k / λ) * (x / λ)^(k - 1) * e^(-(x / λ)^k)
where k
is the shape and λ
is the scale
fn ln_pdf(&self, x: f64) -> f64
[src]
Calculates the log probability density function for the weibull
distribution at x
Formula
ln((k / λ) * (x / λ)^(k - 1) * e^(-(x / λ)^k))
where k
is the shape and λ
is the scale
impl Distribution<f64> for Weibull
[src]
impl Distribution<f64> for Weibull
[src]impl Univariate<f64, f64> for Weibull
[src]
impl Univariate<f64, f64> for Weibull
[src]impl Variance<f64> for Weibull
[src]
impl Variance<f64> for Weibull
[src]fn variance(&self) -> f64
[src]
Returns the variance of the weibull distribution
Formula
λ^2 * (Γ(1 + 2 / k) - Γ(1 + 1 / k)^2)
where k
is the shape, λ
is the scale, and Γ
is
the gamma function
fn std_dev(&self) -> f64
[src]
Returns the standard deviation of the weibull distribution
Formula
sqrt(λ^2 * (Γ(1 + 2 / k) - Γ(1 + 1 / k)^2))
where k
is the shape, λ
is the scale, and Γ
is
the gamma function