RegressionResults.get_robustcov_results()

statsmodels.regression.linear_model.RegressionResults.get_robustcov_results RegressionResults.get_robustcov_results(cov_type='HC1', use_t=None, **kwds) [source] create new results instance with robust covariance as default Parameters: cov_type : string the type of robust sandwich estimator to use. see Notes below use_t : bool If true, then the t distribution is used for inference. If false, then the normal distribution is used. kwds : depends on cov_type Required or optional arguments

ARMAResults.cov_params()

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

CountResults.initialize()

statsmodels.discrete.discrete_model.CountResults.initialize CountResults.initialize(model, params, **kwd)

static RegressionResults.tvalues()

statsmodels.regression.linear_model.RegressionResults.tvalues static RegressionResults.tvalues() Return the t-statistic for a given parameter estimate.

TLinearModel.initialize()

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

NegativeBinomial.hessian()

statsmodels.discrete.discrete_model.NegativeBinomial.hessian NegativeBinomial.hessian(params) The Hessian matrix of the model

endog, exog, what’s that?

endog, exog, what?s that? Statsmodels is using endog and exog as names for the data, the observed variables that are used in an estimation problem. Other names that are often used in different statistical packages or text books are, for example, endog exog y x y variable x variable left hand side (LHS) right hand side (RHS) dependent variable independent variable regressand regressors outcome design response variable explanatory variable The usage is quite often domain and model specific; how

static QuantRegResults.rsquared()

statsmodels.regression.quantile_regression.QuantRegResults.rsquared static QuantRegResults.rsquared() [source]

static GLMResults.resid_pearson()

statsmodels.genmod.generalized_linear_model.GLMResults.resid_pearson static GLMResults.resid_pearson() [source]

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.