Enum Distribution

Source
pub enum Distribution {
    Uniform(UniformDistribution),
    Exponential(ExponentialDistribution),
    Gaussian(GaussianDistribution),
    Bernoulli(BernoulliDistribution),
    Generic(GenericDistribution),
}
Expand description

This object defines probabilistic distributions that encode uncertain information about a single, scalar value. Currently, we support five core statistical distributions. New variants will be added over time.

This object is the lowest-level object in the statistics hierarchy, and it is the main unit of calculus when evaluating expressions in a statistical context. Notions like column and table statistics are built on top of this object and the operations it supports.

Variants§

Implementations§

Source§

impl Distribution

Source

pub fn new_uniform(interval: Interval) -> Result<Distribution, DataFusionError>

Constructs a new Uniform distribution from the given Interval.

Source

pub fn new_exponential( rate: ScalarValue, offset: ScalarValue, positive_tail: bool, ) -> Result<Distribution, DataFusionError>

Constructs a new Exponential distribution from the given rate/offset pair, and validates the given parameters.

Source

pub fn new_gaussian( mean: ScalarValue, variance: ScalarValue, ) -> Result<Distribution, DataFusionError>

Constructs a new Gaussian distribution from the given mean/variance pair, and validates the given parameters.

Source

pub fn new_bernoulli(p: ScalarValue) -> Result<Distribution, DataFusionError>

Constructs a new Bernoulli distribution from the given success probability, and validates the given parameters.

Source

pub fn new_generic( mean: ScalarValue, median: ScalarValue, variance: ScalarValue, range: Interval, ) -> Result<Distribution, DataFusionError>

Constructs a new Generic distribution from the given mean, median, variance, and range values after validating the given parameters.

Source

pub fn new_from_interval( range: Interval, ) -> Result<Distribution, DataFusionError>

Constructs a new Generic distribution from the given range. Other parameters (mean, median and variance) are initialized with null values.

Source

pub fn mean(&self) -> Result<ScalarValue, DataFusionError>

Extracts the mean value of this uncertain quantity, depending on its distribution:

  • A Uniform distribution’s interval determines its mean value, which is the arithmetic average of the interval endpoints.
  • An Exponential distribution’s mean is calculable by the formula offset + 1 / λ, where λ is the (non-negative) rate.
  • A Gaussian distribution contains the mean explicitly.
  • A Bernoulli distribution’s mean is equal to its success probability p.
  • A Generic distribution may have it explicitly, or this information may be absent.
Source

pub fn median(&self) -> Result<ScalarValue, DataFusionError>

Extracts the median value of this uncertain quantity, depending on its distribution:

  • A Uniform distribution’s interval determines its median value, which is the arithmetic average of the interval endpoints.
  • An Exponential distribution’s median is calculable by the formula offset + ln(2) / λ, where λ is the (non-negative) rate.
  • A Gaussian distribution’s median is equal to its mean, which is specified explicitly.
  • A Bernoulli distribution’s median is 1 if p > 0.5 and 0 otherwise, where p is the success probability.
  • A Generic distribution may have it explicitly, or this information may be absent.
Source

pub fn variance(&self) -> Result<ScalarValue, DataFusionError>

Extracts the variance value of this uncertain quantity, depending on its distribution:

  • A Uniform distribution’s interval determines its variance value, which is calculable by the formula (upper - lower) ^ 2 / 12.
  • An Exponential distribution’s variance is calculable by the formula 1 / (λ ^ 2), where λ is the (non-negative) rate.
  • A Gaussian distribution’s variance is specified explicitly.
  • A Bernoulli distribution’s median is given by the formula p * (1 - p) where p is the success probability.
  • A Generic distribution may have it explicitly, or this information may be absent.
Source

pub fn range(&self) -> Result<Interval, DataFusionError>

Extracts the range of this uncertain quantity, depending on its distribution:

Source

pub fn data_type(&self) -> DataType

Returns the data type of the statistical parameters comprising this distribution.

Source

pub fn target_type(args: &[&ScalarValue]) -> Result<DataType, DataFusionError>

Trait Implementations§

Source§

impl Clone for Distribution

Source§

fn clone(&self) -> Distribution

Returns a copy 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 Distribution

Source§

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

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

impl PartialEq for Distribution

Source§

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

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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.