WrappedSciPyDiscreteRandomVariable¶
-
class
probnum.random_variables.WrappedSciPyDiscreteRandomVariable(scipy_rv: Union[scipy.stats._distn_infrastructure.rv_frozen, scipy.stats._multivariate.multi_rv_frozen])¶ Bases:
probnum.random_variables._scipy_stats._SciPyRandomVariableMixin,probnum.random_variables.DiscreteRandomVariableAttributes Summary
TTranspose the random variable. covCovariance \(\operatorname{Cov}(X) = \mathbb{E}((X-\mathbb{E}(X))(X-\mathbb{E}(X))^\top)\) of the random variable. dtypeData type of (elements of) a realization of this random variable. entropymeanMean \(\mathbb{E}(X)\) of the distribution. medianMedian of the random variable. median_dtypeThe dtype of the median.modeMode of the random variable. moment_dtypeThe dtype of any (function of a) moment of the random variable, e.g. ndimparametersParameters of the probability distribution. random_stateRandom state of the random variable. scipy_rvshapeShape of realizations of the random variable. sizestdStandard deviation of the distribution. varVariance \(\operatorname{Var}(X) = \mathbb{E}((X-\mathbb{E}(X))^2)\) of the distribution. Methods Summary
cdf(x)Cumulative distribution function. in_support(x)infer_median_dtype(value_dtype, str])infer_moment_dtype(value_dtype, str])logcdf(x)Log-cumulative distribution function. logpmf(x)pmf(x)quantile(p)Quantile function. reshape(newshape, Iterable[numbers.Integral]])Give a new shape to a random variable. sample(size, Iterable[numbers.Integral]] = ())Draw realizations from a random variable. transpose(*axes)Transpose the random variable. Attributes Documentation
-
T¶ Transpose the random variable.
Parameters: axes (None, tuple of ints, or n ints) – See documentation of numpy.ndarray.transpose. Returns: transposed_rv Return type: The transposed random variable.
-
cov¶ Covariance \(\operatorname{Cov}(X) = \mathbb{E}((X-\mathbb{E}(X))(X-\mathbb{E}(X))^\top)\) of the random variable.
To learn about the dtype of the covariance, see
moment_dtype.Returns: cov – The kernels of the random variable. Return type: array-like
-
dtype¶ Data type of (elements of) a realization of this random variable.
-
entropy¶
-
mean¶ Mean \(\mathbb{E}(X)\) of the distribution.
To learn about the dtype of the mean, see
moment_dtype.Returns: mean – The mean of the distribution. Return type: array-like
-
median¶ Median of the random variable.
To learn about the dtype of the median, see
median_dtype.Returns: median – The median of the distribution. Return type: float
-
median_dtype¶ The dtype of the
median. It will be set to the dtype arising from the multiplication of values with dtypesdtypeandnp.float_. This is motivated by the fact that, even for discrete random variables, e.g. integer-valued random variables, themedianmight lie in between two values in which case these values are averaged. For example, a uniform random variable on \(\{ 1, 2, 3, 4 \}\) will have a median of \(2.5\).
-
mode¶ Mode of the random variable.
Returns: mode – The mode of the random variable. Return type: float
-
moment_dtype¶ The dtype of any (function of a) moment of the random variable, e.g. its
mean,cov,var, orstd. It will be set to the dtype arising from the multiplication of values with dtypesdtypeandnp.float_. This is motivated by the mathematical definition of a moment as a sum or an integral over products of probabilities and values of the random variable, which are represented as using the dtypesnp.float_anddtype, respectively.
-
ndim¶
-
parameters¶ Parameters of the probability distribution.
The parameters of the distribution such as mean, variance, et cetera stored in a
dict.
-
random_state¶ Random state of the random variable.
This attribute defines the RandomState object to use for drawing realizations from this random variable. If None (or np.random), the global np.random state is used. If integer, it is used to seed the local
RandomStateinstance.
-
scipy_rv¶
-
shape¶ Shape of realizations of the random variable.
-
size¶
-
std¶ Standard deviation of the distribution.
To learn about the dtype of the standard deviation, see
moment_dtype.Returns: std – The standard deviation of the distribution. Return type: array-like
-
var¶ Variance \(\operatorname{Var}(X) = \mathbb{E}((X-\mathbb{E}(X))^2)\) of the distribution.
To learn about the dtype of the variance, see
moment_dtype.Returns: var – The variance of the distribution. Return type: array-like
Methods Documentation
-
cdf(x: ValueType) → numpy.float64¶ Cumulative distribution function.
Parameters: x (array-like) – Evaluation points of the cumulative distribution function. The shape of this argument should be (..., S1, ..., SN), where(S1, ..., SN)is theshapeof the random variable. The cdf evaluation will be broadcast over all additional dimensions.Returns: q – Value of the cumulative density function at the given points. Return type: array-like
-
in_support(x: ValueType) → bool¶
-
static
infer_median_dtype(value_dtype: Union[numpy.dtype, str]) → numpy.dtype¶
-
static
infer_moment_dtype(value_dtype: Union[numpy.dtype, str]) → numpy.dtype¶
-
logcdf(x: ValueType) → numpy.float64¶ Log-cumulative distribution function.
Parameters: x (array-like) – Evaluation points of the cumulative distribution function. The shape of this argument should be (..., S1, ..., SN), where(S1, ..., SN)is theshapeof the random variable. The logcdf evaluation will be broadcast over all additional dimensions.Returns: q – Value of the log-cumulative density function at the given points. Return type: array-like
-
logpmf(x: ValueType) → numpy.float64¶
-
pmf(x: ValueType) → numpy.float64¶
-
quantile(p: numbers.Real) → ValueType¶ Quantile function.
The quantile function \(Q \colon [0, 1] \to \mathbb{R}\) of a random variable \(X\) is defined as \(Q(p) = \inf\{ x \in \mathbb{R} \colon p \le F_X(x) \}\), where \(F_X \colon \mathbb{R} \to [0, 1]\) is the
cdf()of the random variable. From the definition it follows that the quantile function always returns values of the same dtype as the random variable. For instance, for a discrete distribution over the integers, the returned quantiles will also be integers. This means that, in general, \(Q(0.5)\) is not equal to themedianas it is defined in this class. See https://en.wikipedia.org/wiki/Quantile_function for more details and examples.
-
reshape(newshape: Union[numbers.Integral, Iterable[numbers.Integral]]) → probnum.random_variables.RandomVariable¶ Give a new shape to a random variable.
Parameters: newshape (int or tuple of ints) – New shape for the random variable. It must be compatible with the original shape. Returns: reshaped_rv Return type: selfwith the new dimensions ofshape.
-
sample(size: Union[numbers.Integral, Iterable[numbers.Integral]] = ()) → ValueType¶ Draw realizations from a random variable.
Parameters: size (tuple) – Size of the drawn sample of realizations. Returns: sample – Sample of realizations with the given sizeand the inherentshape.Return type: array-like
-