bundles / scipy latest / scipy / stats / _multivariate / multivariate_t_gen / cdf
function
scipy.stats._multivariate:multivariate_t_gen.cdf
Signature
def cdf ( self , x , loc = None , shape = 1 , df = 1 , allow_singular = False , * , maxpts = None , lower_limit = None , random_state = None ) Summary
Multivariate t-distribution cumulative distribution function.
Parameters
x: array_likePoints at which to evaluate the cumulative distribution function.
loc: array_like, optionalLocation of the distribution. (default
0)shape: array_like, optionalPositive semidefinite matrix of the distribution. (default
1)df: float, optionalDegrees of freedom of the distribution; must be greater than zero. If
np.infthen results are multivariate normal. The default is1.allow_singular: bool, optionalWhether to allow a singular matrix. (default
False)maxpts: int, optionalMaximum number of points to use for integration. The default is 1000 times the number of dimensions.
lower_limit: array_like, optionalLower limit of integration of the cumulative distribution function. Default is negative infinity. Must be broadcastable with
x.seed: {None, int, np.random.RandomState, np.random.Generator}, optionalUsed for drawing random variates. If seed is
None, the~np.random.RandomStatesingleton is used. If seed is an int, a newRandomStateinstance is used, seeded with seed. If seed is already aRandomStateorGeneratorinstance, then that object is used. Default isNone.
Returns
cdf: ndarray or scalarCumulative distribution function evaluated at
x.
Examples
from scipy.stats import multivariate_t x = [0.4, 5] loc = [0, 1] shape = [[1, 0.1], [0.1, 1]] df = 7✓
multivariate_t.cdf(x, loc, shape, df)
✗Aliases
-
scipy.stats._multivariate.multivariate_t_gen.cdf