TransfTwo_gen.nnlf()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.nnlf TransfTwo_gen.nnlf(theta, x) Return negative loglikelihood function Notes This is -sum(log pdf(x, theta), axis=0) where theta are the parameters (including loc and scale).

TransfTwo_gen.moment()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.moment TransfTwo_gen.moment(n, *args, **kwds) n?th order non-central moment of distribution. Parameters: n : int, n>=1 Order of moment. arg1, arg2, arg3,... : float The shape parameter(s) for the distribution (see docstring of the instance object for more information). kwds : keyword arguments, optional These can include ?loc? and ?scale?, as well as other keyword arguments relevant for a given distribution.

TransfTwo_gen.median()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.median TransfTwo_gen.median(*args, **kwds) Median of the distribution. Parameters: arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information) loc : array_like, optional Location parameter, Default is 0. scale : array_like, optional Scale parameter, Default is 1. Returns: median : float The median of the distribution. See also stats.distribut

TransfTwo_gen.mean()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.mean TransfTwo_gen.mean(*args, **kwds) Mean of the distribution Parameters: arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information) loc : array_like, optional location parameter (default=0) scale : array_like, optional scale parameter (default=1) Returns: mean : float the mean of the distribution

TransfTwo_gen.logsf()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.logsf TransfTwo_gen.logsf(x, *args, **kwds) Log of the survival function of the given RV. Returns the log of the ?survival function,? defined as (1 - cdf), evaluated at x. Parameters: x : array_like quantiles arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information) loc : array_like, optional location parameter (default=0) scale : array_like, opti

TransfTwo_gen.logpdf()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.logpdf TransfTwo_gen.logpdf(x, *args, **kwds) Log of the probability density function at x of the given RV. This uses a more numerically accurate calculation if available. Parameters: x : array_like quantiles arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information) loc : array_like, optional location parameter (default=0) scale : array_like, opti

TransfTwo_gen.logcdf()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.logcdf TransfTwo_gen.logcdf(x, *args, **kwds) Log of the cumulative distribution function at x of the given RV. Parameters: x : array_like quantiles arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information) loc : array_like, optional location parameter (default=0) scale : array_like, optional scale parameter (default=1) Returns: logcdf : array

TransfTwo_gen.isf()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.isf TransfTwo_gen.isf(q, *args, **kwds) Inverse survival function at q of the given RV. Parameters: q : array_like upper tail probability arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information) loc : array_like, optional location parameter (default=0) scale : array_like, optional scale parameter (default=1) Returns: x : ndarray or scalar Qu

TransfTwo_gen.interval()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.interval TransfTwo_gen.interval(alpha, *args, **kwds) Confidence interval with equal areas around the median. Parameters: alpha : array_like of float Probability that an rv will be drawn from the returned range. Each value should be in the range [0, 1]. arg1, arg2, ... : array_like The shape parameter(s) for the distribution (see docstring of the instance object for more information). loc : array_like, optional location parame

TransfTwo_gen.freeze()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.freeze TransfTwo_gen.freeze(*args, **kwds) Freeze the distribution for the given arguments. Parameters: arg1, arg2, arg3,... : array_like The shape parameter(s) for the distribution. Should include all the non-optional arguments, may include loc and scale. Returns: rv_frozen : rv_frozen instance The frozen distribution.