ARMA.loglike()

statsmodels.tsa.arima_model.ARMA.loglike ARMA.loglike(params, set_sigma2=True) [source] Compute the log-likelihood for ARMA(p,q) model Notes Likelihood used depends on the method set in fit

SkewNorm2_gen.sf()

statsmodels.sandbox.distributions.extras.SkewNorm2_gen.sf SkewNorm2_gen.sf(x, *args, **kwds) Survival function (1-cdf) 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: sf : array_like Survival function evaluated

StepDown.get_distance_matrix()

statsmodels.sandbox.stats.multicomp.StepDown.get_distance_matrix StepDown.get_distance_matrix() [source] studentized range statistic

VARResults.irf_resim()

statsmodels.tsa.vector_ar.var_model.VARResults.irf_resim VARResults.irf_resim(orth=False, repl=1000, T=10, seed=None, burn=100, cum=False) [source] Simulates impulse response function, returning an array of simulations. Used for Sims-Zha error band calculation. Parameters: orth: bool, default False : Compute orthoganalized impulse response error bands repl: int : number of Monte Carlo replications to perform T: int, default 10 : number of impulse response periods signif: float (0 <

IVGMMResults.f_test()

statsmodels.sandbox.regression.gmm.IVGMMResults.f_test IVGMMResults.f_test(r_matrix, cov_p=None, scale=1.0, invcov=None) Compute the F-test for a joint linear hypothesis. This is a special case of wald_test that always uses the F distribution. 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

SkewNorm2_gen.nnlf()

statsmodels.sandbox.distributions.extras.SkewNorm2_gen.nnlf SkewNorm2_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).

ProbitResults.t_test()

statsmodels.discrete.discrete_model.ProbitResults.t_test ProbitResults.t_test(r_matrix, cov_p=None, scale=None, use_t=None) Compute a t-test for a each linear hypothesis of the form Rb = q Parameters: r_matrix : array-like, str, tuple array : If an array is given, a p x k 2d array or length k 1d array specifying the linear restrictions. 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 o

Transf_gen.isf()

statsmodels.sandbox.distributions.transformed.Transf_gen.isf Transf_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 Quantile

static ARResults.pvalues()

statsmodels.tsa.ar_model.ARResults.pvalues static ARResults.pvalues() [source]

ArmaFft.from_estimation()

statsmodels.sandbox.tsa.fftarma.ArmaFft.from_estimation classmethod ArmaFft.from_estimation(model_results, nobs=None) Create ArmaProcess instance from ARMA estimation results Parameters: model_results : ARMAResults instance A fitted model nobs : int, optional If None, nobs is taken from the results