Method summary
- __call__(self, args, kwds)
- __fix_loc_scale(self, args, loc, scale)
- __init__(self, momtype = 1, a = None, b = None, xa = -Const(10.0), xb = 10.0, xtol = 1e-014, badvalue = None, name = None, longname = None, shapes = None, extradoc = None)
- cdf(self, x, args, kwds)
- entropy(self, args, kwds)
- est_loc_scale(self, data, args)
- fit(self, data, args, kwds)
- freeze(self, args, kwds)
- isf(self, q, args, kwds)
- moment(self, n, args)
- nnlf(self, theta, x)
- pdf(self, x, args, kwds)
- ppf(self, q, args, kwds)
- rvs(self, args, kwds)
- sf(self, x, args, kwds)
- stats(self, args, kwds)
Methods
- __call__(self, args, kwds)
- __fix_loc_scale(self, args, loc, scale)
- __init__(self, momtype = 1, a = None, b = None, xa = -Const(10.0), xb = 10.0, xtol = 1e-014, badvalue = None, name = None, longname = None, shapes = None, extradoc = None)
- cdf(self, x, args, kwds)
Cumulative distribution function at x of the given RV. *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== loc - location parameter (default=0) scale - scale parameter (default=1)
- entropy(self, args, kwds)
- est_loc_scale(self, data, args)
- fit(self, data, args, kwds)
- freeze(self, args, kwds)
- isf(self, q, args, kwds)
Inverse survival function at q of the given RV. *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== loc - location parameter (default=0) scale - scale parameter (default=1)
- moment(self, n, args)
- nnlf(self, theta, x)
- pdf(self, x, args, kwds)
Probability density function at x of the given RV. *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== loc - location parameter (default=0) scale - scale parameter (default=1)
- ppf(self, q, args, kwds)
Percent point function (inverse of cdf) at q of the given RV. *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== loc - location parameter (default=0) scale - scale parameter (default=1)
- rvs(self, args, kwds)
Random variates of given type. *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== size - number of random variates (default=1) loc - location parameter (default=0) scale - scale parameter (default=1)
- sf(self, x, args, kwds)
Survival function (1-cdf) at x of the given RV. *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== loc - location parameter (default=0) scale - scale parameter (default=1)
- stats(self, args, kwds)
Some statistics of the given RV *args ===== The shape parameter(s) for the distribution (see docstring of the instance object for more information) **kwds ====== loc - location parameter (default=0) scale - scale parameter (default=1) moments - a string composed of letters ['mvsk'] specifying which moments to compute (default='mv') 'm' = mean, 'v' = variance, 's' = (Fisher's) skew, 'k' = (Fisher's) kurtosis.
