pub struct Pareto<F>{ /* private fields */ }
Expand description
The Pareto distribution Pareto(xₘ, α)
.
The Pareto distribution is a continuous probability distribution with
scale parameter xₘ
( or k
) and shape parameter α
.
§Plot
The following plot shows the Pareto distribution with various values of
xₘ
and α
.
Note how the shape parameter α
corresponds to the height of the jump
in density at x = xₘ
, and to the rate of decay in the tail.
§Example
use rand::prelude::*;
use rand_distr::Pareto;
let val: f64 = rand::rng().sample(Pareto::new(1., 2.).unwrap());
println!("{}", val);
Implementations§
Trait Implementations§
Source§impl<'de, F> Deserialize<'de> for Pareto<F>
impl<'de, F> Deserialize<'de> for Pareto<F>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<F> Distribution<F> for Pareto<F>
impl<F> Distribution<F> for Pareto<F>
impl<F> Copy for Pareto<F>
impl<F> StructuralPartialEq for Pareto<F>
Auto Trait Implementations§
impl<F> Freeze for Pareto<F>where
F: Freeze,
impl<F> RefUnwindSafe for Pareto<F>where
F: RefUnwindSafe,
impl<F> Send for Pareto<F>where
F: Send,
impl<F> Sync for Pareto<F>where
F: Sync,
impl<F> Unpin for Pareto<F>where
F: Unpin,
impl<F> UnwindSafe for Pareto<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more