gemseo / uncertainty / distributions / scipy

Hide inherited members

distribution module

The interface to SciPy-based probability distributions.

The SPDistribution class is a concrete class inheriting from Distribution which is an abstract one. SP stands for scipy which is the library it relies on.

The SPDistribution of a given uncertain variable is built from mandatory arguments:

  • a variable name,

  • a distribution name recognized by SciPy,

  • a set of parameters provided as a dictionary of keyword arguments named as the arguments of the scipy constructor of this distribution.

Warning

The distribution parameters must be provided according to the signature of the scipy classes. Access the scipy documentation.

The constructor has also optional arguments:

  • a variable dimension (default: 1),

  • a standard representation of these parameters (default: use parameters).

class gemseo.uncertainty.distributions.scipy.distribution.SPDistribution(variable='x', interfaced_distribution='uniform', parameters=mappingproxy({}), dimension=1, standard_parameters=None)[source]

Bases: Distribution

A SciPy-based probability distribution.

Create a probability distribution for an uncertain variable from its dimension and distribution names and properties.

Examples

>>> from gemseo.uncertainty.distributions.scipy.distribution import (
...     SPDistribution,
... )
>>> distribution = SPDistribution("x", "expon", {"loc": 3, "scale": 1 / 2.0})
>>> print(distribution)
expon(loc=3, scale=0.5)
Parameters:
  • variable (str) –

    The name of the random variable.

    By default it is set to “x”.

  • interfaced_distribution (str) –

    The name of the probability distribution, typically the name of a class wrapped from an external library, such as "Normal" for OpenTURNS or "norm" for SciPy.

    By default it is set to “uniform”.

  • parameters (Mapping[str, Any]) –

    The parameters of the probability distribution.

    By default it is set to {}.

  • dimension (int) –

    The dimension of the random variable. If greater than 1, the probability distribution is applied to all components of the random variable under the hypothesis that these components are stochastically independent. To be removed in a future version; use a ComposedDistribution instead.

    By default it is set to 1.

  • standard_parameters (StandardParametersType | None) – The parameters of the probability distribution used for string representation only (use parameters for computation). If None, use parameters instead. For instance, let us consider the interfaced SciPy distribution "uniform". Then, the string representation of SPDistribution("x", "uniform", parameters, 1, {"min": 1, "max": 3}) with parameters={"loc": 1, "scale": 2} is "uniform(max=3, min=1)" while the string representation of SPDistribution("x", "uniform", parameters) is "uniform(loc=1, scale=2)".

COMPOSED_DISTRIBUTION_CLASS

alias of SPComposedDistribution

compute_cdf(vector)[source]

Evaluate the cumulative density function (CDF).

Evaluate the CDF of the components of the random variable for a given realization of this random variable.

Parameters:

vector (Iterable[float]) – A realization of the random variable.

Returns:

The CDF values of the components of the random variable.

Return type:

ndarray

compute_inverse_cdf(vector)[source]

Evaluate the inverse of the cumulative density function (ICDF).

Parameters:

vector (Iterable[float]) – A vector of values comprised between 0 and 1 whose length is equal to the dimension of the random variable.

Returns:

The ICDF values of the components of the random variable.

Return type:

ndarray

compute_samples(n_samples=1, random_state=None)[source]

Sample the random variable.

Parameters:
  • n_samples (int) –

    The number of samples.

    By default it is set to 1.

  • random_state (None | int | Generator | RandomState) – The SciPy random state.

Returns:

The samples of the random variable,

The number of columns is equal to the dimension of the variable and the number of lines is equal to the number of samples.

Return type:

ndarray

plot(index=0, show=True, save=False, file_path='', directory_path='', file_name='', file_extension='')

Plot both probability and cumulative density functions for a given component.

Parameters:
  • index (int) –

    The index of a component of the random variable.

    By default it is set to 0.

  • save (bool) –

    If True, save the figure.

    By default it is set to False.

  • show (bool) –

    If True, display the figure.

    By default it is set to True.

  • file_path (str | Path) –

    The path of the file to save the figures. If the extension is missing, use file_extension. If empty, create a file path from directory_path, file_name and file_extension.

    By default it is set to “”.

  • directory_path (str | Path) –

    The path of the directory to save the figures. If empty, use the current working directory.

    By default it is set to “”.

  • file_name (str) –

    The name of the file to save the figures. If empty, use a default one generated by the post-processing.

    By default it is set to “”.

  • file_extension (str) –

    A file extension, e.g. 'png', 'pdf', 'svg', … If empty, use a default file extension.

    By default it is set to “”.

Returns:

The figure.

Return type:

Figure

plot_all(show=True, save=False, file_path='', directory_path='', file_name='', file_extension='')

Plot both probability and cumulative density functions for all components.

Parameters:
  • save (bool) –

    If True, save the figure.

    By default it is set to False.

  • show (bool) –

    If True, display the figure.

    By default it is set to True.

  • file_path (str | Path) –

    The path of the file to save the figures. If the extension is missing, use file_extension. If empty, create a file path from directory_path, file_name and file_extension.

    By default it is set to “”.

  • directory_path (str | Path) –

    The path of the directory to save the figures. If empty, use the current working directory.

    By default it is set to “”.

  • file_name (str) –

    The name of the file to save the figures. If empty, use a default one generated by the post-processing.

    By default it is set to “”.

  • file_extension (str) –

    A file extension, e.g. 'png', 'pdf', 'svg', … If empty, use a default file extension.

    By default it is set to “”.

Returns:

The figures.

Return type:

list[Figure]

DEFAULT_VARIABLE_NAME: Final[str] = 'x'

The default name of the variable.

dimension: int

The number of dimensions of the random variable.

distribution: type

The probability distribution of the random variable.

distribution_name: str

The name of the probability distribution.

marginals: list[type]

The marginal distributions of the components of the random variable.

math_lower_bound: ndarray

The mathematical lower bound of the random variable.

math_upper_bound: ndarray

The mathematical upper bound of the random variable.

property mean: ndarray

The analytical mean of the random variable.

num_lower_bound: ndarray

The numerical lower bound of the random variable.

num_upper_bound: ndarray

The numerical upper bound of the random variable.

parameters: tuple[Any] | dict[str, Any]

The parameters of the probability distribution.

property range: list[ndarray]

The numerical range.

The numerical range is the interval defined by the lower and upper bounds numerically reachable by the random variable.

Here, the numerical range of the random variable is defined by one array for each component of the random variable, whose first element is the lower bound of this component while the second one is its upper bound.

property standard_deviation: ndarray

The analytical standard deviation of the random variable.

standard_parameters: dict[str, str] | None

The standard representation of the parameters of the distribution, used for its string representation.

property support: list[ndarray]

The mathematical support.

The mathematical support is the interval defined by the theoretical lower and upper bounds of the random variable.

Here, the mathematical range of the random variable is defined by one array for each component of the random variable, whose first element is the lower bound of this component while the second one is its upper bound.

transformation: str

The transformation applied to the random variable, e.g. ‘sin(x)’.

variable_name: str

The name of the random variable.

Examples using SPDistribution

Probability distributions based on SciPy

Probability distributions based on SciPy