Transf_gen.std()

statsmodels.sandbox.distributions.transformed.Transf_gen.std Transf_gen.std(*args, **kwds) Standard deviation 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: std : float standard deviation of the distribution

sandbox.distributions.extras.ACSkewT_gen

statsmodels.sandbox.distributions.extras.ACSkewT_gen class statsmodels.sandbox.distributions.extras.ACSkewT_gen [source] univariate Skew-T distribution of Azzalini class follows scipy.stats.distributions pattern but with __init__ Methods cdf(x, *args, **kwds) Cumulative distribution function of the given RV. entropy(*args, **kwds) Differential entropy of the RV. est_loc_scale(*args, **kwds) est_loc_scale is deprecated! expect([func, args, loc, scale, lb, ub, ...]) Calculate expected val

graphics.gofplots.qqplot()

statsmodels.graphics.gofplots.qqplot statsmodels.graphics.gofplots.qqplot(data, dist=, distargs=(), a=0, loc=0, scale=1, fit=False, line=None, ax=None) [source] Q-Q plot of the quantiles of x versus the quantiles/ppf of a distribution. Can take arguments specifying the parameters for dist or fit them automatically. (See fit under Parameters.) Parameters: data : array-like 1d data array dist : A scipy.stats or statsmodels distribution Compare x against dist. The default is scipy.stats.dis

ARResults.wald_test()

statsmodels.tsa.ar_model.ARResults.wald_test ARResults.wald_test(r_matrix, cov_p=None, scale=1.0, invcov=None, use_f=None) Compute a Wald-test for a joint linear hypothesis. Parameters: r_matrix : array-like, str, or tuple array : An r x k array where r is the number of restrictions to test and k is the number of regressors. It is assumed that the linear combination is equal to zero. str : The full hypotheses to test can be given as a string. See the examples. tuple : A tuple of arrays in

BinaryModel.pdf()

statsmodels.discrete.discrete_model.BinaryModel.pdf BinaryModel.pdf(X) The probability density (mass) function of the model.

ARMA.loglike_kalman()

statsmodels.tsa.arima_model.ARMA.loglike_kalman ARMA.loglike_kalman(params, set_sigma2=True) [source] Compute exact loglikelihood for ARMA(p,q) model by the Kalman Filter.

Transf_gen.nnlf()

statsmodels.sandbox.distributions.transformed.Transf_gen.nnlf Transf_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).

TLinearModel.initialize()

statsmodels.miscmodels.tmodel.TLinearModel.initialize TLinearModel.initialize() [source]

ARMAResults.cov_params()

statsmodels.tsa.arima_model.ARMAResults.cov_params ARMAResults.cov_params() [source]

TransfTwo_gen.est_loc_scale()

statsmodels.sandbox.distributions.transformed.TransfTwo_gen.est_loc_scale TransfTwo_gen.est_loc_scale(*args, **kwds) est_loc_scale is deprecated! This function is deprecated, use self.fit_loc_scale(data) instead.