├── .codacy.yml ├── .codecov.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .mailmap ├── .pep8speaks.yml ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.rst ├── COPYRIGHTS.txt ├── INSTALL.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── README_l1.txt ├── appveyor.yml ├── archive ├── README.md ├── docs │ ├── GLMNotes.lyx │ ├── GLMNotes.pdf │ ├── fix_longtable.py │ └── source │ │ └── genericmle.rst.TXT └── tsa │ ├── ex_arma.py │ ├── ex_mle_garch.py │ ├── example_garch.py │ ├── garch.py │ └── notes_organize.txt ├── azure-pipelines.yml ├── docs ├── Makefile ├── README.md ├── make.bat ├── source │ ├── _static │ │ ├── blogger.png │ │ ├── blogger_sm.png │ │ ├── bullet.gif │ │ ├── closelabel.png │ │ ├── examples.css │ │ ├── facebox.css │ │ ├── facebox.js │ │ ├── gettingstarted_0.png │ │ ├── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ ├── images │ │ │ ├── anova.png │ │ │ ├── autoregressions.png │ │ │ ├── categorical_interaction_plot.png │ │ │ ├── chi2_fitting.png │ │ │ ├── contrasts.png │ │ │ ├── discrete_overview.png │ │ │ ├── distributed_estimation.png │ │ │ ├── exponential_smoothing.png │ │ │ ├── fairs_data.png │ │ │ ├── formulas_intro.png │ │ │ ├── gee-cov-struct.png │ │ │ ├── gee-score-tests.png │ │ │ ├── generic_mle.png │ │ │ ├── glm_formulas.png │ │ │ ├── glm_overview.png │ │ │ ├── glm_weights.png │ │ │ ├── gls.png │ │ │ ├── influence_glm_logit.png │ │ │ ├── kde_overview.png │ │ │ ├── markov_autoregression.png │ │ │ ├── markov_regression.png │ │ │ ├── mixed_lm.png │ │ │ ├── ols.png │ │ │ ├── pca_fertility_factors.png │ │ │ ├── plots_boxplots.png │ │ │ ├── prediction.png │ │ │ ├── quantile_regression.png │ │ │ ├── recursive_ls.png │ │ │ ├── regression_diagnostics.png │ │ │ ├── regression_plots.png │ │ │ ├── rlm.png │ │ │ ├── rlm_overview.png │ │ │ ├── rolling_ls.png │ │ │ ├── statespace_arma0.png │ │ │ ├── statespace_concentrated_scale.png │ │ │ ├── statespace_cycles.png │ │ │ ├── statespace_dfm_coincident.png │ │ │ ├── statespace_fixed_params.png │ │ │ ├── statespace_forecasting.png │ │ │ ├── statespace_local_linear_trend.png │ │ │ ├── statespace_sarimax_internet.png │ │ │ ├── statespace_sarimax_stata.png │ │ │ ├── statespace_seasonal.png │ │ │ ├── statespace_structural_harvey_jaeger.png │ │ │ ├── statespace_varmax.png │ │ │ ├── stl_decomposition.png │ │ │ ├── tsa_arma0.png │ │ │ ├── tsa_arma1.png │ │ │ ├── tsa_dates.png │ │ │ ├── tsa_filters.png │ │ │ └── wls.png │ │ ├── ipython.min.css │ │ ├── loading.gif │ │ ├── minus.gif │ │ ├── mktree.css │ │ ├── mktree.js │ │ ├── nbviewer.pygments.css │ │ ├── plus.gif │ │ ├── scripts.js │ │ └── versions.json │ ├── _templates │ │ ├── autosummary │ │ │ ├── attribute.rst │ │ │ ├── class.rst │ │ │ ├── member.rst │ │ │ ├── method.rst │ │ │ └── minimal_module.rst │ │ └── layout.html │ ├── about.rst │ ├── anova.rst │ ├── api.rst │ ├── conf.py │ ├── contingency_tables.rst │ ├── contrasts.rst │ ├── datasets │ │ └── index.rst │ ├── dev │ │ ├── dataset_notes.rst │ │ ├── examples.rst │ │ ├── get_involved.rst │ │ ├── git_notes.rst │ │ ├── images │ │ │ └── git_merge.png │ │ ├── index.rst │ │ ├── internal.rst │ │ ├── maintainer_notes.rst │ │ ├── naming_conventions.rst │ │ ├── test_notes.rst │ │ └── testing.rst │ ├── diagnostic.rst │ ├── discretemod.rst │ ├── distributions.rst │ ├── duration.rst │ ├── emplike.rst │ ├── endog_exog.rst │ ├── example_formulas.rst │ ├── examples │ │ ├── README │ │ ├── index.rst │ │ └── landing.json │ ├── extending.rst.TXT │ ├── faq.rst │ ├── gam.rst │ ├── gee.rst │ ├── gettingstarted.rst │ ├── glm.rst │ ├── glm_techn1.rst.TXT │ ├── glm_techn2.rst.TXT │ ├── gmm.rst │ ├── gmm_techn1.rst.TXT │ ├── graphics.rst │ ├── images │ │ ├── aw.png │ │ ├── favicon.ico │ │ ├── hl.png │ │ ├── ht.png │ │ ├── ls.png │ │ ├── re.png │ │ ├── statsmodels-favicon-base.svg │ │ ├── statsmodels-logo-v2-bw.svg │ │ ├── statsmodels-logo-v2-dark.svg │ │ ├── statsmodels-logo-v2-horizontal-dark.svg │ │ ├── statsmodels-logo-v2-horizontal-light.svg │ │ ├── statsmodels-logo-v2-horizontal.svg │ │ ├── statsmodels-logo-v2-light.svg │ │ ├── statsmodels-logo-v2-no-text-dark.svg │ │ ├── statsmodels-logo-v2-no-text-light.svg │ │ ├── statsmodels-logo-v2-no-text.svg │ │ ├── statsmodels-logo-v2.svg │ │ ├── statsmodels_hybi_banner.png │ │ ├── statsmodels_hybi_banner.svg │ │ ├── statsmodels_hybi_banner_v2.png │ │ ├── statsmodels_hybi_favico.ico │ │ ├── tk.png │ │ └── tm.png │ ├── imputation.rst │ ├── index.rst │ ├── install.rst │ ├── iolib.rst │ ├── large_data.rst │ ├── miscmodels.rst │ ├── missing.rst │ ├── mixed_glm.rst │ ├── mixed_linear.rst │ ├── multivariate.rst │ ├── names_wordlist.txt │ ├── nonparametric.rst │ ├── optimization.rst │ ├── pitfalls.rst │ ├── plots │ │ ├── arma_predict_plot.py │ │ ├── bkf_plot.py │ │ ├── cff_plot.py │ │ ├── graphics-mean_diff_plot.py │ │ ├── graphics_boxplot_beanplot.py │ │ ├── graphics_boxplot_violinplot.py │ │ ├── graphics_correlation_plot_corr.py │ │ ├── graphics_correlation_plot_corr_grid.py │ │ ├── graphics_functional_fboxplot.py │ │ ├── graphics_functional_hdrboxplot.py │ │ ├── graphics_functional_rainbowplot.py │ │ ├── graphics_gofplots_qqplot.py │ │ ├── graphics_gofplots_qqplot_2samples.py │ │ ├── graphics_gofplots_qqplot_qqline.py │ │ ├── graphics_mosaicplot_mosaic.py │ │ ├── graphics_plot_fit_ex.py │ │ ├── graphics_plot_grids_scatter_ellipse.py │ │ ├── graphics_regression_abline.py │ │ ├── graphics_regression_ccpr.py │ │ ├── graphics_regression_ccpr_grid.py │ │ ├── graphics_regression_ceres_residuals.py │ │ ├── graphics_regression_influence.py │ │ ├── graphics_regression_leverage_resid2.py │ │ ├── graphics_regression_partregress.py │ │ ├── graphics_regression_partregress_grid.py │ │ ├── graphics_regression_regress_exog.py │ │ ├── graphics_tsa_month_plot.py │ │ ├── graphics_tsa_plot_acf.py │ │ ├── graphics_tsa_plot_pacf.py │ │ ├── graphics_tsa_quarter_plot.py │ │ ├── hpf_plot.py │ │ ├── load_macrodata.py │ │ ├── mice_example_1.txt │ │ ├── stl_plot.py │ │ ├── var_plot_acorr.py │ │ ├── var_plot_fevd.py │ │ ├── var_plot_forecast.py │ │ ├── var_plot_input.py │ │ ├── var_plot_irf.py │ │ ├── var_plot_irf_cum.py │ │ └── var_plots.py │ ├── regression.rst │ ├── regression_techn1.rst.TXT │ ├── release │ │ ├── index.rst │ │ ├── old_changes.rst │ │ ├── version0.10.1.rst │ │ ├── version0.10.2.rst │ │ ├── version0.10.rst │ │ ├── version0.11.rst │ │ ├── version0.5.rst │ │ ├── version0.6.rst │ │ ├── version0.7.rst │ │ ├── version0.8.rst │ │ └── version0.9.rst │ ├── rlm.rst │ ├── rlm_techn1.rst │ ├── sandbox.rst │ ├── spelling_wordlist.txt │ ├── statespace.rst │ ├── stats.rst │ ├── tools.rst │ ├── tsa.rst │ ├── tsastats.rst.TXT │ ├── user-guide.rst │ └── vector_ar.rst └── source2 │ ├── _static │ ├── blogger.png │ ├── blogger_sm.png │ ├── bullet.gif │ ├── closelabel.png │ ├── examples.css │ ├── facebox.css │ ├── facebox.js │ ├── gettingstarted_0.png │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── images │ │ ├── anova.png │ │ ├── autoregressions.png │ │ ├── categorical_interaction_plot.png │ │ ├── chi2_fitting.png │ │ ├── contrasts.png │ │ ├── discrete_overview.png │ │ ├── distributed_estimation.png │ │ ├── exponential_smoothing.png │ │ ├── fairs_data.png │ │ ├── formulas_intro.png │ │ ├── gee-cov-struct.png │ │ ├── gee-score-tests.png │ │ ├── generic_mle.png │ │ ├── glm_formulas.png │ │ ├── glm_overview.png │ │ ├── glm_weights.png │ │ ├── gls.png │ │ ├── influence_glm_logit.png │ │ ├── kde_overview.png │ │ ├── markov_autoregression.png │ │ ├── markov_regression.png │ │ ├── mixed_lm.png │ │ ├── ols.png │ │ ├── pca_fertility_factors.png │ │ ├── plots_boxplots.png │ │ ├── prediction.png │ │ ├── quantile_regression.png │ │ ├── recursive_ls.png │ │ ├── regression_diagnostics.png │ │ ├── regression_plots.png │ │ ├── rlm.png │ │ ├── rlm_overview.png │ │ ├── rolling_ls.png │ │ ├── statespace_arma0.png │ │ ├── statespace_concentrated_scale.png │ │ ├── statespace_cycles.png │ │ ├── statespace_dfm_coincident.png │ │ ├── statespace_fixed_params.png │ │ ├── statespace_forecasting.png │ │ ├── statespace_local_linear_trend.png │ │ ├── statespace_sarimax_internet.png │ │ ├── statespace_sarimax_stata.png │ │ ├── statespace_seasonal.png │ │ ├── statespace_structural_harvey_jaeger.png │ │ ├── statespace_varmax.png │ │ ├── stl_decomposition.png │ │ ├── tsa_arma0.png │ │ ├── tsa_arma1.png │ │ ├── tsa_dates.png │ │ ├── tsa_filters.png │ │ └── wls.png │ ├── ipython.min.css │ ├── loading.gif │ ├── minus.gif │ ├── mktree.css │ ├── mktree.js │ ├── nbviewer.pygments.css │ ├── plus.gif │ ├── scripts.js │ └── versions.json │ ├── _templates │ ├── autosummary │ │ ├── attribute.rst │ │ ├── class.rst │ │ ├── member.rst │ │ ├── method.rst │ │ └── minimal_module.rst │ └── layout.html │ ├── about.rst │ ├── anova.rst │ ├── api-structure.rst │ ├── api.rst │ ├── conf.py │ ├── contingency_tables.rst │ ├── contrasts.rst │ ├── datasets │ ├── generated │ │ ├── anes96.rst │ │ ├── cancer.rst │ │ ├── ccard.rst │ │ ├── china_smoking.rst │ │ ├── co2.rst │ │ ├── committee.rst │ │ ├── copper.rst │ │ ├── cpunish.rst │ │ ├── elnino.rst │ │ ├── engel.rst │ │ ├── fair.rst │ │ ├── fertility.rst │ │ ├── grunfeld.rst │ │ ├── heart.rst │ │ ├── interest_inflation.rst │ │ ├── longley.rst │ │ ├── macrodata.rst │ │ ├── modechoice.rst │ │ ├── nile.rst │ │ ├── randhie.rst │ │ ├── scotland.rst │ │ ├── spector.rst │ │ ├── stackloss.rst │ │ ├── star98.rst │ │ ├── statecrime.rst │ │ ├── strikes.rst │ │ └── sunspots.rst │ ├── index.rst │ ├── statsmodels.datasets.clear_data_home.rst │ ├── statsmodels.datasets.get_data_home.rst │ ├── statsmodels.datasets.get_rdataset.rst │ └── statsmodels.datasets.webuse.rst │ ├── dev │ ├── dataset_notes.rst │ ├── examples.rst │ ├── generated │ │ ├── generated │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.endog_names.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.exog_names.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.expandparams.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.fit.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.from_formula.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.hessian.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.hessian_factor.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.information.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.initialize.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.loglike.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.loglikeobs.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.nloglike.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.predict.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.reduceparams.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.score.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModel.score_obs.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.aic.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.bic.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.bootstrap.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.bse.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.bsejac.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.bsejhj.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.conf_int.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.cov_params.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.covjac.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.covjhj.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.df_modelwc.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.f_test.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.get_nlfun.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.hessv.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.initialize.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.llf.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.load.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.normalized_cov_params.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.predict.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.pvalues.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.remove_data.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.save.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.score_obsv.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.summary.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.t_test.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.t_test_pairwise.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.tvalues.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.use_t.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.wald_test.rst │ │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.wald_test_terms.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.endog_names.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.exog_names.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.fit.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.from_formula.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.hessian.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.information.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.initialize.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.loglike.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.predict.rst │ │ │ ├── statsmodels.base.model.LikelihoodModel.score.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.bse.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.conf_int.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.cov_params.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.f_test.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.initialize.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.llf.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.load.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.normalized_cov_params.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.predict.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.pvalues.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.remove_data.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.save.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.summary.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.t_test.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.t_test_pairwise.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.tvalues.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.use_t.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.wald_test.rst │ │ │ ├── statsmodels.base.model.LikelihoodModelResults.wald_test_terms.rst │ │ │ ├── statsmodels.base.model.Model.endog_names.rst │ │ │ ├── statsmodels.base.model.Model.exog_names.rst │ │ │ ├── statsmodels.base.model.Model.fit.rst │ │ │ ├── statsmodels.base.model.Model.from_formula.rst │ │ │ ├── statsmodels.base.model.Model.predict.rst │ │ │ ├── statsmodels.base.model.ResultMixin.aic.rst │ │ │ ├── statsmodels.base.model.ResultMixin.bic.rst │ │ │ ├── statsmodels.base.model.ResultMixin.bootstrap.rst │ │ │ ├── statsmodels.base.model.ResultMixin.bsejac.rst │ │ │ ├── statsmodels.base.model.ResultMixin.bsejhj.rst │ │ │ ├── statsmodels.base.model.ResultMixin.covjac.rst │ │ │ ├── statsmodels.base.model.ResultMixin.covjhj.rst │ │ │ ├── statsmodels.base.model.ResultMixin.df_modelwc.rst │ │ │ ├── statsmodels.base.model.ResultMixin.get_nlfun.rst │ │ │ ├── statsmodels.base.model.ResultMixin.hessv.rst │ │ │ ├── statsmodels.base.model.ResultMixin.score_obsv.rst │ │ │ ├── statsmodels.base.model.Results.initialize.rst │ │ │ ├── statsmodels.base.model.Results.predict.rst │ │ │ ├── statsmodels.base.model.Results.summary.rst │ │ │ ├── statsmodels.stats.contrast.ContrastResults.conf_int.rst │ │ │ ├── statsmodels.stats.contrast.ContrastResults.summary.rst │ │ │ └── statsmodels.stats.contrast.ContrastResults.summary_frame.rst │ │ ├── statsmodels.__init__.test.rst │ │ ├── statsmodels.base.model.GenericLikelihoodModel.rst │ │ ├── statsmodels.base.model.GenericLikelihoodModelResults.rst │ │ ├── statsmodels.base.model.LikelihoodModel.rst │ │ ├── statsmodels.base.model.LikelihoodModelResults.rst │ │ ├── statsmodels.base.model.Model.rst │ │ ├── statsmodels.base.model.ResultMixin.rst │ │ ├── statsmodels.base.model.Results.rst │ │ └── statsmodels.stats.contrast.ContrastResults.rst │ ├── get_involved.rst │ ├── git_notes.rst │ ├── images │ │ └── git_merge.png │ ├── index.rst │ ├── internal.rst │ ├── maintainer_notes.rst │ ├── naming_conventions.rst │ ├── test_notes.rst │ └── testing.rst │ ├── diagnostic.rst │ ├── discretemod.rst │ ├── distributions.rst │ ├── duration.rst │ ├── emplike.rst │ ├── endog_exog.rst │ ├── example_formulas.rst │ ├── examples │ ├── README │ ├── index.rst │ ├── landing.json │ └── notebooks │ │ └── generated │ │ ├── autoregressions.html │ │ ├── categorical_interaction_plot.html │ │ ├── categorical_interaction_plot.ipynb │ │ ├── chi2_fitting.html │ │ ├── chi2_fitting.ipynb │ │ ├── contrasts.html │ │ ├── contrasts.ipynb │ │ ├── discrete_choice_example.html │ │ ├── discrete_choice_example.ipynb │ │ ├── discrete_choice_overview.html │ │ ├── discrete_choice_overview.ipynb │ │ ├── distributed_estimation.html │ │ ├── distributed_estimation.ipynb │ │ ├── exponential_smoothing.html │ │ ├── exponential_smoothing.ipynb │ │ ├── formulas.html │ │ ├── formulas.ipynb │ │ ├── gee_nested_simulation.html │ │ ├── gee_nested_simulation.ipynb │ │ ├── gee_score_test_simulation.html │ │ ├── generic_mle.html │ │ ├── glm.html │ │ ├── glm_formula.html │ │ ├── glm_formula.ipynb │ │ ├── glm_weights.html │ │ ├── glm_weights.ipynb │ │ ├── gls.html │ │ ├── gls.ipynb │ │ ├── influence_glm_logit.html │ │ ├── influence_glm_logit.ipynb │ │ ├── interactions_anova.html │ │ ├── interactions_anova.ipynb │ │ ├── kernel_density.html │ │ ├── kernel_density.ipynb │ │ ├── markov_autoregression.html │ │ ├── markov_autoregression.ipynb │ │ ├── markov_regression.html │ │ ├── markov_regression.ipynb │ │ ├── mixed_lm_example.html │ │ ├── ols.html │ │ ├── ols.ipynb │ │ ├── pca_fertility_factors.html │ │ ├── pca_fertility_factors.ipynb │ │ ├── plots_boxplots.html │ │ ├── plots_boxplots.ipynb │ │ ├── predict.html │ │ ├── predict.ipynb │ │ ├── quantile_regression.html │ │ ├── quantile_regression.ipynb │ │ ├── recursive_ls.html │ │ ├── recursive_ls.ipynb │ │ ├── regression_diagnostics.html │ │ ├── regression_diagnostics.ipynb │ │ ├── regression_plots.html │ │ ├── regression_plots.ipynb │ │ ├── robust_models_0.html │ │ ├── robust_models_0.ipynb │ │ ├── robust_models_1.html │ │ ├── rolling_ls.html │ │ ├── statespace_arma_0.html │ │ ├── statespace_arma_0.ipynb │ │ ├── statespace_concentrated_scale.html │ │ ├── statespace_concentrated_scale.ipynb │ │ ├── statespace_cycles.html │ │ ├── statespace_cycles.ipynb │ │ ├── statespace_dfm_coincident.html │ │ ├── statespace_dfm_coincident.ipynb │ │ ├── statespace_fixed_params.html │ │ ├── statespace_forecasting.html │ │ ├── statespace_local_linear_trend.html │ │ ├── statespace_local_linear_trend.ipynb │ │ ├── statespace_sarimax_internet.html │ │ ├── statespace_sarimax_stata.html │ │ ├── statespace_sarimax_stata.ipynb │ │ ├── statespace_seasonal.html │ │ ├── statespace_seasonal.ipynb │ │ ├── statespace_structural_harvey_jaeger.html │ │ ├── statespace_structural_harvey_jaeger.ipynb │ │ ├── statespace_varmax.html │ │ ├── statespace_varmax.ipynb │ │ ├── stl_decomposition.html │ │ ├── tsa_arma_0.html │ │ ├── tsa_arma_0.ipynb │ │ ├── tsa_arma_1.html │ │ ├── tsa_arma_1.ipynb │ │ ├── tsa_dates.html │ │ ├── tsa_dates.ipynb │ │ ├── tsa_filters.html │ │ ├── tsa_filters.ipynb │ │ ├── wls.html │ │ └── wls.ipynb │ ├── extending.rst.TXT │ ├── faq.rst │ ├── gam.rst │ ├── gee.rst │ ├── generated │ ├── generated │ │ ├── statsmodels.base.distributed_estimation.DistributedModel.fit.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedModel.fit_joblib.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedModel.fit_sequential.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.bse.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.conf_int.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.cov_params.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.f_test.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.initialize.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.llf.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.load.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.normalized_cov_params.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.predict.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.pvalues.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.remove_data.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.save.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.summary.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.t_test.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.t_test_pairwise.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.tvalues.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.use_t.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.wald_test.rst │ │ ├── statsmodels.base.distributed_estimation.DistributedResults.wald_test_terms.rst │ │ ├── statsmodels.base.elastic_net.RegularizedResults.fittedvalues.rst │ │ ├── statsmodels.base.elastic_net.RegularizedResults.initialize.rst │ │ ├── statsmodels.base.elastic_net.RegularizedResults.predict.rst │ │ ├── statsmodels.base.elastic_net.RegularizedResults.summary.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.endog_names.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.exog_names.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.fit.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.fit_regularized.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.from_formula.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.hessian.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.information.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.initialize.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.loglike.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.loglike_grp.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.predict.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.score.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.score_grp.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.endog_names.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.exog_names.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.fit.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.fit_regularized.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.from_formula.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.hessian.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.information.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.initialize.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.loglike.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.predict.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.score.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.endog_names.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.exog_names.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.fit.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.fit_regularized.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.from_formula.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.hessian.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.information.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.initialize.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.loglike.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.predict.rst │ │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.score.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.cdf.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.endog_names.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.exog_names.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.fit.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.fit_regularized.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.from_formula.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.hessian.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.information.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.initialize.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.loglike.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.loglikeobs.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.pdf.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.predict.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.score.rst │ │ ├── statsmodels.discrete.count_model.GenericZeroInflated.score_obs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.cdf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.endog_names.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.exog_names.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.fit.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.fit_regularized.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.from_formula.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.hessian.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.information.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.initialize.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.loglike.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.loglikeobs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.pdf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.predict.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.score.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.score_obs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.aic.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.bic.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.bse.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.conf_int.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.cov_params.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.f_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.fittedvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.get_margeff.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.initialize.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.llf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.llnull.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.llr.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.load.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.predict.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.prsquared.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.pvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.remove_data.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.resid.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.resid_response.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.save.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.set_null_options.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.summary.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.summary2.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.t_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.tvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.use_t.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.wald_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.cdf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.endog_names.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.exog_names.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.fit.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.fit_regularized.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.from_formula.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.hessian.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.information.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.initialize.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.loglike.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.loglikeobs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.pdf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.predict.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.score.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.score_obs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.aic.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.bic.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.bse.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.conf_int.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.cov_params.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.f_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.fittedvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.get_margeff.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.initialize.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.llf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.llnull.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.llr.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.load.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.predict.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.prsquared.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.pvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.remove_data.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.resid.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.resid_response.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.save.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.set_null_options.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.summary.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.summary2.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.t_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.tvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.use_t.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.wald_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.cdf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.endog_names.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.exog_names.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.fit.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.fit_regularized.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.from_formula.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.hessian.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.information.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.initialize.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.loglike.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.loglikeobs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.pdf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.predict.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.score.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.score_obs.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.aic.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.bic.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.bse.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.conf_int.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.cov_params.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.f_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.fittedvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.get_margeff.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.initialize.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.llf.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.llnull.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.llr.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.load.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.predict.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.prsquared.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.pvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.remove_data.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.resid.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.resid_response.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.save.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.set_null_options.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.summary.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.summary2.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.t_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.tvalues.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.use_t.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.wald_test.rst │ │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.fit.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.information.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.predict.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryModel.score.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.pred_table.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.resid_dev.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.resid_pearson.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.BinaryResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.fit.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.information.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.predict.rst │ │ ├── statsmodels.discrete.discrete_model.CountModel.score.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.resid.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.CountResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.fit.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.information.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.predict.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteModel.score.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.DiscreteResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.fit.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.information.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.loglikeobs.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.predict.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.score.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.lnalpha.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.lnalpha_std_err.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.resid.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.fit.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.information.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.loglikeobs.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.predict.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.score.rst │ │ ├── statsmodels.discrete.discrete_model.Logit.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.pred_table.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.resid_dev.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.resid_generalized.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.resid_pearson.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.LogitResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.fit.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.information.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.loglike_and_score.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.loglikeobs.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.predict.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.score.rst │ │ ├── statsmodels.discrete.discrete_model.MNLogit.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.fit.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.information.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.predict.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialModel.score.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.margeff.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.pred_table.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.resid_misclassified.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.MultinomialResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.fit.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.information.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.predict.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.score.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.convert_params.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.fit.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.information.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.loglikeobs.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.predict.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.score.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.lnalpha.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.lnalpha_std_err.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.resid.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.wald_test_terms.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.family.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.fit.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.fit_constrained.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.hessian_factor.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.information.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.loglikeobs.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.predict.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.score.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.score_factor.rst │ │ ├── statsmodels.discrete.discrete_model.Poisson.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.cdf.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.cov_params_func_l1.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.endog_names.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.exog_names.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.fit.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.fit_regularized.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.from_formula.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.hessian.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.information.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.loglike.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.loglikeobs.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.pdf.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.predict.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.score.rst │ │ ├── statsmodels.discrete.discrete_model.Probit.score_obs.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.aic.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.bic.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.bse.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.conf_int.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.f_test.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.fittedvalues.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.get_margeff.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.initialize.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.llf.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.llnull.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.llr.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.llr_pvalue.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.load.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.normalized_cov_params.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.pred_table.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.predict.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.prsquared.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.pvalues.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.remove_data.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.resid_dev.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.resid_generalized.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.resid_pearson.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.resid_response.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.save.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.set_null_options.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.summary.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.summary2.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.t_test.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.t_test_pairwise.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.tvalues.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.use_t.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.wald_test.rst │ │ ├── statsmodels.discrete.discrete_model.ProbitResults.wald_test_terms.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.baseline_cumulative_hazard.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.baseline_cumulative_hazard_function.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.breslow_gradient.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.breslow_hessian.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.breslow_loglike.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.efron_gradient.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.efron_hessian.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.efron_loglike.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.endog_names.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.exog_names.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.fit.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.fit_regularized.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.from_formula.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.get_distribution.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.hessian.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.information.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.initialize.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.loglike.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.predict.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.robust_covariance.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.score.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.score_residuals.rst │ │ ├── statsmodels.duration.hazard_regression.PHReg.weighted_covariate_averages.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.baseline_cumulative_hazard.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.baseline_cumulative_hazard_function.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.bse.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.conf_int.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.cov_params.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.f_test.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.get_distribution.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.initialize.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.llf.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.load.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.martingale_residuals.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.normalized_cov_params.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.predict.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.pvalues.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.remove_data.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.save.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.schoenfeld_residuals.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.score_residuals.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.standard_errors.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.summary.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.t_test.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.t_test_pairwise.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.tvalues.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.use_t.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.wald_test.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.wald_test_terms.rst │ │ ├── statsmodels.duration.hazard_regression.PHRegResults.weighted_covariate_averages.rst │ │ ├── statsmodels.duration.survfunc.SurvfuncRight.plot.rst │ │ ├── statsmodels.duration.survfunc.SurvfuncRight.quantile.rst │ │ ├── statsmodels.duration.survfunc.SurvfuncRight.quantile_ci.rst │ │ ├── statsmodels.duration.survfunc.SurvfuncRight.simultaneous_cb.rst │ │ ├── statsmodels.duration.survfunc.SurvfuncRight.summary.rst │ │ ├── statsmodels.emplike.descriptive.DescStatMV.ci_corr.rst │ │ ├── statsmodels.emplike.descriptive.DescStatMV.mv_mean_contour.rst │ │ ├── statsmodels.emplike.descriptive.DescStatMV.mv_test_mean.rst │ │ ├── statsmodels.emplike.descriptive.DescStatMV.test_corr.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.ci_kurt.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.ci_mean.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.ci_skew.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.ci_var.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.plot_contour.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.test_joint_skew_kurt.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.test_kurt.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.test_mean.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.test_skew.rst │ │ ├── statsmodels.emplike.descriptive.DescStatUV.test_var.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.endog_names.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.estimate_scale.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.estimate_tweedie_power.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.exog_names.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.fit.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.fit_constrained.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.fit_regularized.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.from_formula.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.get_distribution.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.hessian.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.hessian_factor.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.hessian_numdiff.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.information.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.initialize.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.loglike.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.loglike_mu.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.loglikeobs.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.predict.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.score.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.score_factor.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.score_numdiff.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.score_obs.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.score_test.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.select_penweight.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGam.select_penweight_kfold.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.aic.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.bic.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.bse.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.conf_int.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.cov_params.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.cv.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.deviance.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.edf.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.f_test.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.fittedvalues.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.gcv.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.get_hat_matrix_diag.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.get_influence.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.get_prediction.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.hat_matrix_diag.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.hat_matrix_trace.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.initialize.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.llf.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.llnull.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.load.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.mu.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.normalized_cov_params.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.null.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.null_deviance.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.partial_values.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.pearson_chi2.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.plot_added_variable.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.plot_ceres_residuals.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.plot_partial.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.plot_partial_residuals.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.predict.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.pvalues.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.remove_data.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_anscombe.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_anscombe_scaled.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_anscombe_unscaled.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_deviance.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_pearson.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_response.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.resid_working.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.save.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.summary.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.summary2.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.t_test.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.t_test_pairwise.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.test_significance.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.tvalues.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.use_t.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.wald_test.rst │ │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.wald_test_terms.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.cdf.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.cov_params_func_l1.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.endog_names.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.exog_names.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.fit.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.fit_regularized.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.from_formula.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.hessian.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.hessian_numdiff.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.information.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.initialize.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.loglike.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.loglikeobs.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.pdf.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.predict.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.score.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.score_numdiff.rst │ │ ├── statsmodels.gam.generalized_additive_model.LogitGam.score_obs.rst │ │ ├── statsmodels.gam.smooth_basis.BSplines.transform.rst │ │ ├── statsmodels.gam.smooth_basis.CyclicCubicSplines.transform.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BayesMixedGLMResults.cov_params.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BayesMixedGLMResults.predict.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BayesMixedGLMResults.random_effects.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BayesMixedGLMResults.summary.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.endog_names.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.exog_names.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.fit.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.fit_map.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.fit_vb.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.from_formula.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.logposterior.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.logposterior_grad.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.predict.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.rng.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.vb_elbo.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.vb_elbo_base.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.vb_elbo_grad.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.vb_elbo_grad_base.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.verbose.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.endog_names.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.exog_names.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.fit.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.fit_map.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.fit_vb.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.from_formula.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.logposterior.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.logposterior_grad.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.predict.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.rng.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.vb_elbo.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.vb_elbo_base.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.vb_elbo_grad.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.vb_elbo_grad_base.rst │ │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.verbose.rst │ │ ├── statsmodels.genmod.cov_struct.Autoregressive.covariance_matrix.rst │ │ ├── statsmodels.genmod.cov_struct.Autoregressive.covariance_matrix_solve.rst │ │ ├── statsmodels.genmod.cov_struct.Autoregressive.initialize.rst │ │ ├── statsmodels.genmod.cov_struct.Autoregressive.summary.rst │ │ ├── statsmodels.genmod.cov_struct.Autoregressive.update.rst │ │ ├── statsmodels.genmod.cov_struct.CovStruct.covariance_matrix.rst │ │ ├── statsmodels.genmod.cov_struct.CovStruct.covariance_matrix_solve.rst │ │ ├── statsmodels.genmod.cov_struct.CovStruct.initialize.rst │ │ ├── statsmodels.genmod.cov_struct.CovStruct.summary.rst │ │ ├── statsmodels.genmod.cov_struct.CovStruct.update.rst │ │ ├── statsmodels.genmod.cov_struct.Exchangeable.covariance_matrix.rst │ │ ├── statsmodels.genmod.cov_struct.Exchangeable.covariance_matrix_solve.rst │ │ ├── statsmodels.genmod.cov_struct.Exchangeable.initialize.rst │ │ ├── statsmodels.genmod.cov_struct.Exchangeable.summary.rst │ │ ├── statsmodels.genmod.cov_struct.Exchangeable.update.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.covariance_matrix.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.covariance_matrix_solve.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.get_eyy.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.initialize.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.observed_crude_oddsratio.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.pooled_odds_ratio.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.summary.rst │ │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.update.rst │ │ ├── statsmodels.genmod.cov_struct.Independence.covariance_matrix.rst │ │ ├── statsmodels.genmod.cov_struct.Independence.covariance_matrix_solve.rst │ │ ├── statsmodels.genmod.cov_struct.Independence.initialize.rst │ │ ├── statsmodels.genmod.cov_struct.Independence.summary.rst │ │ ├── statsmodels.genmod.cov_struct.Independence.update.rst │ │ ├── statsmodels.genmod.cov_struct.Nested.covariance_matrix.rst │ │ ├── statsmodels.genmod.cov_struct.Nested.covariance_matrix_solve.rst │ │ ├── statsmodels.genmod.cov_struct.Nested.initialize.rst │ │ ├── statsmodels.genmod.cov_struct.Nested.summary.rst │ │ ├── statsmodels.genmod.cov_struct.Nested.update.rst │ │ ├── statsmodels.genmod.families.family.Binomial.deviance.rst │ │ ├── statsmodels.genmod.families.family.Binomial.fitted.rst │ │ ├── statsmodels.genmod.families.family.Binomial.initialize.rst │ │ ├── statsmodels.genmod.families.family.Binomial.link.rst │ │ ├── statsmodels.genmod.families.family.Binomial.links.rst │ │ ├── statsmodels.genmod.families.family.Binomial.loglike.rst │ │ ├── statsmodels.genmod.families.family.Binomial.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.Binomial.predict.rst │ │ ├── statsmodels.genmod.families.family.Binomial.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.Binomial.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.Binomial.safe_links.rst │ │ ├── statsmodels.genmod.families.family.Binomial.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.Binomial.valid.rst │ │ ├── statsmodels.genmod.families.family.Binomial.variance.rst │ │ ├── statsmodels.genmod.families.family.Binomial.weights.rst │ │ ├── statsmodels.genmod.families.family.Family.deviance.rst │ │ ├── statsmodels.genmod.families.family.Family.fitted.rst │ │ ├── statsmodels.genmod.families.family.Family.link.rst │ │ ├── statsmodels.genmod.families.family.Family.links.rst │ │ ├── statsmodels.genmod.families.family.Family.loglike.rst │ │ ├── statsmodels.genmod.families.family.Family.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.Family.predict.rst │ │ ├── statsmodels.genmod.families.family.Family.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.Family.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.Family.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.Family.valid.rst │ │ ├── statsmodels.genmod.families.family.Family.weights.rst │ │ ├── statsmodels.genmod.families.family.Gamma.deviance.rst │ │ ├── statsmodels.genmod.families.family.Gamma.fitted.rst │ │ ├── statsmodels.genmod.families.family.Gamma.link.rst │ │ ├── statsmodels.genmod.families.family.Gamma.links.rst │ │ ├── statsmodels.genmod.families.family.Gamma.loglike.rst │ │ ├── statsmodels.genmod.families.family.Gamma.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.Gamma.predict.rst │ │ ├── statsmodels.genmod.families.family.Gamma.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.Gamma.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.Gamma.safe_links.rst │ │ ├── statsmodels.genmod.families.family.Gamma.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.Gamma.valid.rst │ │ ├── statsmodels.genmod.families.family.Gamma.variance.rst │ │ ├── statsmodels.genmod.families.family.Gamma.weights.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.deviance.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.fitted.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.link.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.links.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.loglike.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.predict.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.safe_links.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.valid.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.variance.rst │ │ ├── statsmodels.genmod.families.family.Gaussian.weights.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.deviance.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.fitted.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.link.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.links.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.loglike.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.predict.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.safe_links.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.valid.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.variance.rst │ │ ├── statsmodels.genmod.families.family.InverseGaussian.weights.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.deviance.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.fitted.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.link.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.links.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.loglike.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.predict.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.safe_links.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.valid.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.variance.rst │ │ ├── statsmodels.genmod.families.family.NegativeBinomial.weights.rst │ │ ├── statsmodels.genmod.families.family.Poisson.deviance.rst │ │ ├── statsmodels.genmod.families.family.Poisson.fitted.rst │ │ ├── statsmodels.genmod.families.family.Poisson.link.rst │ │ ├── statsmodels.genmod.families.family.Poisson.links.rst │ │ ├── statsmodels.genmod.families.family.Poisson.loglike.rst │ │ ├── statsmodels.genmod.families.family.Poisson.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.Poisson.predict.rst │ │ ├── statsmodels.genmod.families.family.Poisson.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.Poisson.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.Poisson.safe_links.rst │ │ ├── statsmodels.genmod.families.family.Poisson.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.Poisson.valid.rst │ │ ├── statsmodels.genmod.families.family.Poisson.variance.rst │ │ ├── statsmodels.genmod.families.family.Poisson.weights.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.deviance.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.fitted.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.link.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.links.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.loglike.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.loglike_obs.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.predict.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.resid_anscombe.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.resid_dev.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.safe_links.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.starting_mu.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.valid.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.variance.rst │ │ ├── statsmodels.genmod.families.family.Tweedie.weights.rst │ │ ├── statsmodels.genmod.families.links.CDFLink.deriv.rst │ │ ├── statsmodels.genmod.families.links.CDFLink.deriv2.rst │ │ ├── statsmodels.genmod.families.links.CDFLink.inverse.rst │ │ ├── statsmodels.genmod.families.links.CDFLink.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.CDFLink.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.CLogLog.deriv.rst │ │ ├── statsmodels.genmod.families.links.CLogLog.deriv2.rst │ │ ├── statsmodels.genmod.families.links.CLogLog.inverse.rst │ │ ├── statsmodels.genmod.families.links.CLogLog.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.CLogLog.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.Link.deriv.rst │ │ ├── statsmodels.genmod.families.links.Link.deriv2.rst │ │ ├── statsmodels.genmod.families.links.Link.inverse.rst │ │ ├── statsmodels.genmod.families.links.Link.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.Link.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.Log.deriv.rst │ │ ├── statsmodels.genmod.families.links.Log.deriv2.rst │ │ ├── statsmodels.genmod.families.links.Log.inverse.rst │ │ ├── statsmodels.genmod.families.links.Log.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.Log.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.Logit.deriv.rst │ │ ├── statsmodels.genmod.families.links.Logit.deriv2.rst │ │ ├── statsmodels.genmod.families.links.Logit.inverse.rst │ │ ├── statsmodels.genmod.families.links.Logit.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.Logit.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.NegativeBinomial.deriv.rst │ │ ├── statsmodels.genmod.families.links.NegativeBinomial.deriv2.rst │ │ ├── statsmodels.genmod.families.links.NegativeBinomial.inverse.rst │ │ ├── statsmodels.genmod.families.links.NegativeBinomial.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.NegativeBinomial.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.Power.deriv.rst │ │ ├── statsmodels.genmod.families.links.Power.deriv2.rst │ │ ├── statsmodels.genmod.families.links.Power.inverse.rst │ │ ├── statsmodels.genmod.families.links.Power.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.Power.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.cauchy.deriv.rst │ │ ├── statsmodels.genmod.families.links.cauchy.deriv2.rst │ │ ├── statsmodels.genmod.families.links.cauchy.inverse.rst │ │ ├── statsmodels.genmod.families.links.cauchy.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.cauchy.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.identity.deriv.rst │ │ ├── statsmodels.genmod.families.links.identity.deriv2.rst │ │ ├── statsmodels.genmod.families.links.identity.inverse.rst │ │ ├── statsmodels.genmod.families.links.identity.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.identity.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.inverse_power.deriv.rst │ │ ├── statsmodels.genmod.families.links.inverse_power.deriv2.rst │ │ ├── statsmodels.genmod.families.links.inverse_power.inverse.rst │ │ ├── statsmodels.genmod.families.links.inverse_power.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.inverse_power.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.inverse_squared.deriv.rst │ │ ├── statsmodels.genmod.families.links.inverse_squared.deriv2.rst │ │ ├── statsmodels.genmod.families.links.inverse_squared.inverse.rst │ │ ├── statsmodels.genmod.families.links.inverse_squared.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.inverse_squared.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.nbinom.deriv.rst │ │ ├── statsmodels.genmod.families.links.nbinom.deriv2.rst │ │ ├── statsmodels.genmod.families.links.nbinom.inverse.rst │ │ ├── statsmodels.genmod.families.links.nbinom.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.nbinom.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.links.probit.deriv.rst │ │ ├── statsmodels.genmod.families.links.probit.deriv2.rst │ │ ├── statsmodels.genmod.families.links.probit.inverse.rst │ │ ├── statsmodels.genmod.families.links.probit.inverse_deriv.rst │ │ ├── statsmodels.genmod.families.links.probit.inverse_deriv2.rst │ │ ├── statsmodels.genmod.families.varfuncs.Binomial.deriv.rst │ │ ├── statsmodels.genmod.families.varfuncs.NegativeBinomial.deriv.rst │ │ ├── statsmodels.genmod.families.varfuncs.Power.deriv.rst │ │ ├── statsmodels.genmod.families.varfuncs.VarianceFunction.deriv.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.cached_means.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.cluster_list.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.compare_score_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.endog_names.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.estimate_scale.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.exog_names.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.fit.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.fit_regularized.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.from_formula.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.mean_deriv.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.mean_deriv_exog.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.predict.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.qic.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.update_cached_means.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.conf_int.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.get_margeff.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.pvalues.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.summary.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.summary_frame.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.tvalues.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.bse.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.centered_resid.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.conf_int.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.cov_params.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.f_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.fittedvalues.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.get_margeff.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.initialize.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.llf.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.load.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.normalized_cov_params.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.params_sensitivity.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.plot_added_variable.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.plot_ceres_residuals.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.plot_isotropic_dependence.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.plot_partial_residuals.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.predict.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.pvalues.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.qic.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.remove_data.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_anscombe.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_centered.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_centered_split.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_deviance.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_pearson.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_response.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_split.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.resid_working.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.save.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.score_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.sensitivity_params.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.split_centered_resid.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.split_resid.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.standard_errors.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.summary.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.t_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.t_test_pairwise.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.tvalues.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.use_t.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.wald_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.wald_test_terms.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.cached_means.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.cluster_list.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.compare_score_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.endog_names.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.estimate_scale.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.exog_names.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.fit.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.fit_regularized.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.from_formula.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.mean_deriv.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.mean_deriv_exog.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.predict.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.qic.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.setup_nominal.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.update_cached_means.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.cached_means.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.cluster_list.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.compare_score_test.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.endog_names.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.estimate_scale.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.exog_names.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.fit.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.fit_regularized.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.from_formula.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.mean_deriv.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.mean_deriv_exog.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.predict.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.qic.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.setup_ordinal.rst │ │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.update_cached_means.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.endog_names.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.estimate_scale.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.estimate_tweedie_power.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.exog_names.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.fit.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.fit_constrained.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.fit_regularized.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.from_formula.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.get_distribution.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.hessian.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.hessian_factor.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.information.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.initialize.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.loglike.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.loglike_mu.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.predict.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.score.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.score_factor.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.score_obs.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLM.score_test.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.aic.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.bic.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.bse.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.conf_int.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.cov_params.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.deviance.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.f_test.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.fittedvalues.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.get_hat_matrix_diag.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.get_influence.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.get_prediction.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.initialize.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.llf.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.llnull.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.load.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.mu.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.normalized_cov_params.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.null.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.null_deviance.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.pearson_chi2.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.plot_added_variable.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.plot_ceres_residuals.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.plot_partial_residuals.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.predict.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.pvalues.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.remove_data.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_anscombe.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_anscombe_scaled.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_anscombe_unscaled.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_deviance.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_pearson.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_response.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.resid_working.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.save.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.summary.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.summary2.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.t_test.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.t_test_pairwise.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.tvalues.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.use_t.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.wald_test.rst │ │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.wald_test_terms.rst │ │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.conf_int.rst │ │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.se_mean.rst │ │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.se_obs.rst │ │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.summary_frame.rst │ │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.t_test.rst │ │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.tvalues.rst │ │ ├── statsmodels.genmod.qif.QIF.endog_names.rst │ │ ├── statsmodels.genmod.qif.QIF.estimate_scale.rst │ │ ├── statsmodels.genmod.qif.QIF.exog_names.rst │ │ ├── statsmodels.genmod.qif.QIF.fit.rst │ │ ├── statsmodels.genmod.qif.QIF.from_formula.rst │ │ ├── statsmodels.genmod.qif.QIF.objective.rst │ │ ├── statsmodels.genmod.qif.QIF.predict.rst │ │ ├── statsmodels.genmod.qif.QIFResults.aic.rst │ │ ├── statsmodels.genmod.qif.QIFResults.bic.rst │ │ ├── statsmodels.genmod.qif.QIFResults.bse.rst │ │ ├── statsmodels.genmod.qif.QIFResults.conf_int.rst │ │ ├── statsmodels.genmod.qif.QIFResults.cov_params.rst │ │ ├── statsmodels.genmod.qif.QIFResults.f_test.rst │ │ ├── statsmodels.genmod.qif.QIFResults.fittedvalues.rst │ │ ├── statsmodels.genmod.qif.QIFResults.initialize.rst │ │ ├── statsmodels.genmod.qif.QIFResults.llf.rst │ │ ├── statsmodels.genmod.qif.QIFResults.load.rst │ │ ├── statsmodels.genmod.qif.QIFResults.normalized_cov_params.rst │ │ ├── statsmodels.genmod.qif.QIFResults.predict.rst │ │ ├── statsmodels.genmod.qif.QIFResults.pvalues.rst │ │ ├── statsmodels.genmod.qif.QIFResults.remove_data.rst │ │ ├── statsmodels.genmod.qif.QIFResults.save.rst │ │ ├── statsmodels.genmod.qif.QIFResults.summary.rst │ │ ├── statsmodels.genmod.qif.QIFResults.t_test.rst │ │ ├── statsmodels.genmod.qif.QIFResults.t_test_pairwise.rst │ │ ├── statsmodels.genmod.qif.QIFResults.tvalues.rst │ │ ├── statsmodels.genmod.qif.QIFResults.use_t.rst │ │ ├── statsmodels.genmod.qif.QIFResults.wald_test.rst │ │ ├── statsmodels.genmod.qif.QIFResults.wald_test_terms.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.ppplot.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.probplot.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.qqplot.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.sample_percentiles.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.sample_quantiles.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.sorted_data.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.theoretical_percentiles.rst │ │ ├── statsmodels.graphics.gofplots.ProbPlot.theoretical_quantiles.rst │ │ ├── statsmodels.imputation.bayes_mi.BayesGaussMI.update.rst │ │ ├── statsmodels.imputation.bayes_mi.BayesGaussMI.update_cov.rst │ │ ├── statsmodels.imputation.bayes_mi.BayesGaussMI.update_data.rst │ │ ├── statsmodels.imputation.bayes_mi.BayesGaussMI.update_mean.rst │ │ ├── statsmodels.imputation.bayes_mi.MI.fit.rst │ │ ├── statsmodels.imputation.mice.MICE.combine.rst │ │ ├── statsmodels.imputation.mice.MICE.fit.rst │ │ ├── statsmodels.imputation.mice.MICE.next_sample.rst │ │ ├── statsmodels.imputation.mice.MICEData.get_fitting_data.rst │ │ ├── statsmodels.imputation.mice.MICEData.get_split_data.rst │ │ ├── statsmodels.imputation.mice.MICEData.impute.rst │ │ ├── statsmodels.imputation.mice.MICEData.impute_pmm.rst │ │ ├── statsmodels.imputation.mice.MICEData.next_sample.rst │ │ ├── statsmodels.imputation.mice.MICEData.perturb_params.rst │ │ ├── statsmodels.imputation.mice.MICEData.plot_bivariate.rst │ │ ├── statsmodels.imputation.mice.MICEData.plot_fit_obs.rst │ │ ├── statsmodels.imputation.mice.MICEData.plot_imputed_hist.rst │ │ ├── statsmodels.imputation.mice.MICEData.plot_missing_pattern.rst │ │ ├── statsmodels.imputation.mice.MICEData.set_imputer.rst │ │ ├── statsmodels.imputation.mice.MICEData.update.rst │ │ ├── statsmodels.imputation.mice.MICEData.update_all.rst │ │ ├── statsmodels.iolib.foreign.StataReader.DTYPE_MAP.rst │ │ ├── statsmodels.iolib.foreign.StataReader.MISSING_VALUES.rst │ │ ├── statsmodels.iolib.foreign.StataReader.TYPE_MAP.rst │ │ ├── statsmodels.iolib.foreign.StataReader.dataset.rst │ │ ├── statsmodels.iolib.foreign.StataReader.file_format.rst │ │ ├── statsmodels.iolib.foreign.StataReader.file_headers.rst │ │ ├── statsmodels.iolib.foreign.StataReader.file_label.rst │ │ ├── statsmodels.iolib.foreign.StataReader.file_timestamp.rst │ │ ├── statsmodels.iolib.foreign.StataReader.variables.rst │ │ ├── statsmodels.iolib.foreign.StataWriter.DTYPE_MAP.rst │ │ ├── statsmodels.iolib.foreign.StataWriter.MISSING_VALUES.rst │ │ ├── statsmodels.iolib.foreign.StataWriter.TYPE_MAP.rst │ │ ├── statsmodels.iolib.foreign.StataWriter.write_file.rst │ │ ├── statsmodels.iolib.summary.Summary.add_extra_txt.rst │ │ ├── statsmodels.iolib.summary.Summary.add_table_2cols.rst │ │ ├── statsmodels.iolib.summary.Summary.add_table_params.rst │ │ ├── statsmodels.iolib.summary.Summary.as_csv.rst │ │ ├── statsmodels.iolib.summary.Summary.as_html.rst │ │ ├── statsmodels.iolib.summary.Summary.as_latex.rst │ │ ├── statsmodels.iolib.summary.Summary.as_text.rst │ │ ├── statsmodels.iolib.summary2.Summary.add_array.rst │ │ ├── statsmodels.iolib.summary2.Summary.add_base.rst │ │ ├── statsmodels.iolib.summary2.Summary.add_df.rst │ │ ├── statsmodels.iolib.summary2.Summary.add_dict.rst │ │ ├── statsmodels.iolib.summary2.Summary.add_text.rst │ │ ├── statsmodels.iolib.summary2.Summary.add_title.rst │ │ ├── statsmodels.iolib.summary2.Summary.as_html.rst │ │ ├── statsmodels.iolib.summary2.Summary.as_latex.rst │ │ ├── statsmodels.iolib.summary2.Summary.as_text.rst │ │ ├── statsmodels.iolib.table.SimpleTable.append.rst │ │ ├── statsmodels.iolib.table.SimpleTable.as_csv.rst │ │ ├── statsmodels.iolib.table.SimpleTable.as_html.rst │ │ ├── statsmodels.iolib.table.SimpleTable.as_latex_tabular.rst │ │ ├── statsmodels.iolib.table.SimpleTable.as_text.rst │ │ ├── statsmodels.iolib.table.SimpleTable.clear.rst │ │ ├── statsmodels.iolib.table.SimpleTable.copy.rst │ │ ├── statsmodels.iolib.table.SimpleTable.count.rst │ │ ├── statsmodels.iolib.table.SimpleTable.data.rst │ │ ├── statsmodels.iolib.table.SimpleTable.extend.rst │ │ ├── statsmodels.iolib.table.SimpleTable.extend_right.rst │ │ ├── statsmodels.iolib.table.SimpleTable.get_colwidths.rst │ │ ├── statsmodels.iolib.table.SimpleTable.index.rst │ │ ├── statsmodels.iolib.table.SimpleTable.insert.rst │ │ ├── statsmodels.iolib.table.SimpleTable.insert_header_row.rst │ │ ├── statsmodels.iolib.table.SimpleTable.insert_stubs.rst │ │ ├── statsmodels.iolib.table.SimpleTable.label_cells.rst │ │ ├── statsmodels.iolib.table.SimpleTable.pad.rst │ │ ├── statsmodels.iolib.table.SimpleTable.pop.rst │ │ ├── statsmodels.iolib.table.SimpleTable.remove.rst │ │ ├── statsmodels.iolib.table.SimpleTable.reverse.rst │ │ ├── statsmodels.iolib.table.SimpleTable.sort.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.endog_names.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.exog_names.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.expandparams.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.fit.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.from_formula.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.hessian.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.hessian_factor.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.information.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.initialize.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.loglike.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.loglikeobs.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.nloglike.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.nloglikeobs.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.predict.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.predict_distribution.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.reduceparams.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.score.rst │ │ ├── statsmodels.miscmodels.count.PoissonGMLE.score_obs.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.endog_names.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.exog_names.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.expandparams.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.fit.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.from_formula.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.hessian.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.hessian_factor.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.information.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.initialize.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.loglike.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.loglikeobs.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.nloglike.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.nloglikeobs.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.predict.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.reduceparams.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.score.rst │ │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.score_obs.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.endog_names.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.exog_names.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.expandparams.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.fit.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.from_formula.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.hessian.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.hessian_factor.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.information.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.initialize.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.loglike.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.loglikeobs.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.nloglike.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.nloglikeobs.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.predict.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.reduceparams.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.score.rst │ │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.score_obs.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.endog_names.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.exog_names.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.expandparams.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.fit.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.from_formula.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.hessian.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.hessian_factor.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.information.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.initialize.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.loglike.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.loglikeobs.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.nloglike.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.predict.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.reduceparams.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.score.rst │ │ ├── statsmodels.miscmodels.tmodel.TLinearModel.score_obs.rst │ │ ├── statsmodels.multivariate.cancorr.CanCorr.corr_test.rst │ │ ├── statsmodels.multivariate.cancorr.CanCorr.endog_names.rst │ │ ├── statsmodels.multivariate.cancorr.CanCorr.exog_names.rst │ │ ├── statsmodels.multivariate.cancorr.CanCorr.fit.rst │ │ ├── statsmodels.multivariate.cancorr.CanCorr.from_formula.rst │ │ ├── statsmodels.multivariate.cancorr.CanCorr.predict.rst │ │ ├── statsmodels.multivariate.factor.Factor.endog_names.rst │ │ ├── statsmodels.multivariate.factor.Factor.exog_names.rst │ │ ├── statsmodels.multivariate.factor.Factor.fit.rst │ │ ├── statsmodels.multivariate.factor.Factor.from_formula.rst │ │ ├── statsmodels.multivariate.factor.Factor.loglike.rst │ │ ├── statsmodels.multivariate.factor.Factor.predict.rst │ │ ├── statsmodels.multivariate.factor.Factor.score.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.factor_score_params.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.factor_scoring.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.fitted_cov.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.get_loadings_frame.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.load_stderr.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.plot_loadings.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.plot_scree.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.rotate.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.summary.rst │ │ ├── statsmodels.multivariate.factor.FactorResults.uniq_stderr.rst │ │ ├── statsmodels.multivariate.manova.MANOVA.endog_names.rst │ │ ├── statsmodels.multivariate.manova.MANOVA.exog_names.rst │ │ ├── statsmodels.multivariate.manova.MANOVA.fit.rst │ │ ├── statsmodels.multivariate.manova.MANOVA.from_formula.rst │ │ ├── statsmodels.multivariate.manova.MANOVA.mv_test.rst │ │ ├── statsmodels.multivariate.manova.MANOVA.predict.rst │ │ ├── statsmodels.multivariate.multivariate_ols.MultivariateTestResults.summary.rst │ │ ├── statsmodels.multivariate.multivariate_ols.MultivariateTestResults.summary_frame.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLS.endog_names.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLS.exog_names.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLS.fit.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLS.from_formula.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLS.predict.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLSResults.mv_test.rst │ │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLSResults.summary.rst │ │ ├── statsmodels.multivariate.pca.PCA.plot_rsquare.rst │ │ ├── statsmodels.multivariate.pca.PCA.plot_scree.rst │ │ ├── statsmodels.multivariate.pca.PCA.project.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.cdf.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.cumhazard.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.entropy.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.evaluate.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.fit.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.icdf.rst │ │ ├── statsmodels.nonparametric.kde.KDEUnivariate.sf.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariate.cdf.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariate.imse.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariate.loo_likelihood.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariate.pdf.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariateConditional.cdf.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariateConditional.imse.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariateConditional.loo_likelihood.rst │ │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariateConditional.pdf.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.aic_hurvich.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.censored.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.cv_loo.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.fit.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.loo_likelihood.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.r_squared.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.sig_test.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.aic_hurvich.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.cv_loo.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.fit.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.loo_likelihood.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.r_squared.rst │ │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.sig_test.rst │ │ ├── statsmodels.regression.dimred.DimReductionResults.initialize.rst │ │ ├── statsmodels.regression.dimred.DimReductionResults.predict.rst │ │ ├── statsmodels.regression.dimred.DimReductionResults.summary.rst │ │ ├── statsmodels.regression.dimred.PrincipalHessianDirections.endog_names.rst │ │ ├── statsmodels.regression.dimred.PrincipalHessianDirections.exog_names.rst │ │ ├── statsmodels.regression.dimred.PrincipalHessianDirections.fit.rst │ │ ├── statsmodels.regression.dimred.PrincipalHessianDirections.from_formula.rst │ │ ├── statsmodels.regression.dimred.PrincipalHessianDirections.predict.rst │ │ ├── statsmodels.regression.dimred.SlicedAverageVarianceEstimation.endog_names.rst │ │ ├── statsmodels.regression.dimred.SlicedAverageVarianceEstimation.exog_names.rst │ │ ├── statsmodels.regression.dimred.SlicedAverageVarianceEstimation.fit.rst │ │ ├── statsmodels.regression.dimred.SlicedAverageVarianceEstimation.from_formula.rst │ │ ├── statsmodels.regression.dimred.SlicedAverageVarianceEstimation.predict.rst │ │ ├── statsmodels.regression.dimred.SlicedInverseReg.endog_names.rst │ │ ├── statsmodels.regression.dimred.SlicedInverseReg.exog_names.rst │ │ ├── statsmodels.regression.dimred.SlicedInverseReg.fit.rst │ │ ├── statsmodels.regression.dimred.SlicedInverseReg.from_formula.rst │ │ ├── statsmodels.regression.dimred.SlicedInverseReg.predict.rst │ │ ├── statsmodels.regression.linear_model.GLS.df_model.rst │ │ ├── statsmodels.regression.linear_model.GLS.df_resid.rst │ │ ├── statsmodels.regression.linear_model.GLS.endog_names.rst │ │ ├── statsmodels.regression.linear_model.GLS.exog_names.rst │ │ ├── statsmodels.regression.linear_model.GLS.fit.rst │ │ ├── statsmodels.regression.linear_model.GLS.fit_regularized.rst │ │ ├── statsmodels.regression.linear_model.GLS.from_formula.rst │ │ ├── statsmodels.regression.linear_model.GLS.get_distribution.rst │ │ ├── statsmodels.regression.linear_model.GLS.hessian.rst │ │ ├── statsmodels.regression.linear_model.GLS.hessian_factor.rst │ │ ├── statsmodels.regression.linear_model.GLS.information.rst │ │ ├── statsmodels.regression.linear_model.GLS.initialize.rst │ │ ├── statsmodels.regression.linear_model.GLS.loglike.rst │ │ ├── statsmodels.regression.linear_model.GLS.predict.rst │ │ ├── statsmodels.regression.linear_model.GLS.score.rst │ │ ├── statsmodels.regression.linear_model.GLS.whiten.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.df_model.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.df_resid.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.endog_names.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.exog_names.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.fit.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.fit_regularized.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.from_formula.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.get_distribution.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.hessian.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.hessian_factor.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.information.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.initialize.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.iterative_fit.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.loglike.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.predict.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.score.rst │ │ ├── statsmodels.regression.linear_model.GLSAR.whiten.rst │ │ ├── statsmodels.regression.linear_model.OLS.df_model.rst │ │ ├── statsmodels.regression.linear_model.OLS.df_resid.rst │ │ ├── statsmodels.regression.linear_model.OLS.endog_names.rst │ │ ├── statsmodels.regression.linear_model.OLS.exog_names.rst │ │ ├── statsmodels.regression.linear_model.OLS.fit.rst │ │ ├── statsmodels.regression.linear_model.OLS.fit_regularized.rst │ │ ├── statsmodels.regression.linear_model.OLS.from_formula.rst │ │ ├── statsmodels.regression.linear_model.OLS.get_distribution.rst │ │ ├── statsmodels.regression.linear_model.OLS.hessian.rst │ │ ├── statsmodels.regression.linear_model.OLS.hessian_factor.rst │ │ ├── statsmodels.regression.linear_model.OLS.information.rst │ │ ├── statsmodels.regression.linear_model.OLS.initialize.rst │ │ ├── statsmodels.regression.linear_model.OLS.loglike.rst │ │ ├── statsmodels.regression.linear_model.OLS.predict.rst │ │ ├── statsmodels.regression.linear_model.OLS.score.rst │ │ ├── statsmodels.regression.linear_model.OLS.whiten.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.HC0_se.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.HC1_se.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.HC2_se.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.HC3_se.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.aic.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.bic.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.bse.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.centered_tss.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.compare_f_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.compare_lm_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.compare_lr_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.condition_number.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.conf_int.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.conf_int_el.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.cov_HC0.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.cov_HC1.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.cov_HC2.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.cov_HC3.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.cov_params.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.eigenvals.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.el_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.ess.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.f_pvalue.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.f_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.fittedvalues.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.fvalue.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.get_influence.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.get_prediction.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.get_robustcov_results.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.initialize.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.llf.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.load.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.mse_model.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.mse_resid.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.mse_total.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.nobs.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.normalized_cov_params.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.outlier_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.predict.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.pvalues.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.remove_data.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.resid.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.resid_pearson.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.rsquared.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.rsquared_adj.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.save.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.scale.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.ssr.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.summary.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.summary2.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.t_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.t_test_pairwise.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.tvalues.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.uncentered_tss.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.use_t.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.wald_test.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.wald_test_terms.rst │ │ ├── statsmodels.regression.linear_model.OLSResults.wresid.rst │ │ ├── statsmodels.regression.linear_model.PredictionResults.conf_int.rst │ │ ├── statsmodels.regression.linear_model.PredictionResults.se_mean.rst │ │ ├── statsmodels.regression.linear_model.PredictionResults.se_obs.rst │ │ ├── statsmodels.regression.linear_model.PredictionResults.summary_frame.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.HC0_se.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.HC1_se.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.HC2_se.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.HC3_se.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.aic.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.bic.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.bse.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.centered_tss.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.compare_f_test.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.compare_lm_test.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.compare_lr_test.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.condition_number.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.conf_int.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.cov_HC0.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.cov_HC1.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.cov_HC2.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.cov_HC3.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.cov_params.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.eigenvals.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.ess.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.f_pvalue.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.f_test.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.fittedvalues.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.fvalue.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.get_prediction.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.get_robustcov_results.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.initialize.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.llf.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.load.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.mse_model.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.mse_resid.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.mse_total.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.nobs.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.normalized_cov_params.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.predict.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.pvalues.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.remove_data.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.resid.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.resid_pearson.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.rsquared.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.rsquared_adj.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.save.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.scale.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.ssr.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.summary.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.summary2.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.t_test.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.t_test_pairwise.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.tvalues.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.uncentered_tss.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.use_t.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.wald_test.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.wald_test_terms.rst │ │ ├── statsmodels.regression.linear_model.RegressionResults.wresid.rst │ │ ├── statsmodels.regression.linear_model.WLS.df_model.rst │ │ ├── statsmodels.regression.linear_model.WLS.df_resid.rst │ │ ├── statsmodels.regression.linear_model.WLS.endog_names.rst │ │ ├── statsmodels.regression.linear_model.WLS.exog_names.rst │ │ ├── statsmodels.regression.linear_model.WLS.fit.rst │ │ ├── statsmodels.regression.linear_model.WLS.fit_regularized.rst │ │ ├── statsmodels.regression.linear_model.WLS.from_formula.rst │ │ ├── statsmodels.regression.linear_model.WLS.get_distribution.rst │ │ ├── statsmodels.regression.linear_model.WLS.hessian.rst │ │ ├── statsmodels.regression.linear_model.WLS.hessian_factor.rst │ │ ├── statsmodels.regression.linear_model.WLS.information.rst │ │ ├── statsmodels.regression.linear_model.WLS.initialize.rst │ │ ├── statsmodels.regression.linear_model.WLS.loglike.rst │ │ ├── statsmodels.regression.linear_model.WLS.predict.rst │ │ ├── statsmodels.regression.linear_model.WLS.score.rst │ │ ├── statsmodels.regression.linear_model.WLS.whiten.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.endog_names.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.exog_names.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.fit.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.fit_regularized.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.from_formula.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.get_distribution.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.get_fe_params.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.get_scale.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.group_list.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.hessian.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.information.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.initialize.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.loglike.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.predict.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.score.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.score_full.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLM.score_sqrt.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.aic.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bic.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bootstrap.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bse.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bse_fe.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bse_re.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bsejac.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.bsejhj.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.conf_int.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.cov_params.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.covjac.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.covjhj.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.df_modelwc.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.f_test.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.fittedvalues.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.get_nlfun.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.hessv.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.initialize.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.llf.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.load.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.normalized_cov_params.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.predict.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.profile_re.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.pvalues.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.random_effects.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.random_effects_cov.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.remove_data.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.resid.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.save.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.score_obsv.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.summary.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.t_test.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.t_test_pairwise.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.tvalues.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.use_t.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.wald_test.rst │ │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.wald_test_terms.rst │ │ ├── statsmodels.regression.process_regression.GaussianCovariance.get_cov.rst │ │ ├── statsmodels.regression.process_regression.GaussianCovariance.jac.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.covariance.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.endog_names.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.exog_names.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.fit.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.from_formula.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.hessian.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.information.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.initialize.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.loglike.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.predict.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.score.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLE.unpack.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.aic.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.bic.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.bootstrap.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.bse.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.bsejac.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.bsejhj.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.conf_int.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.cov_params.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.covariance.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.covariance_group.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.covjac.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.covjhj.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.df_modelwc.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.f_test.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.get_nlfun.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.hessv.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.initialize.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.llf.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.load.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.normalized_cov_params.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.predict.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.pvalues.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.remove_data.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.save.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.score_obsv.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.summary.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.t_test.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.t_test_pairwise.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.tvalues.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.use_t.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.wald_test.rst │ │ ├── statsmodels.regression.process_regression.ProcessMLEResults.wald_test_terms.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.df_model.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.df_resid.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.endog_names.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.exog_names.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.fit.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.from_formula.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.get_distribution.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.hessian.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.information.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.initialize.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.loglike.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.predict.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.score.rst │ │ ├── statsmodels.regression.quantile_regression.QuantReg.whiten.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.HC0_se.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.HC1_se.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.HC2_se.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.HC3_se.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.aic.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.bic.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.bse.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.centered_tss.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.compare_f_test.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.compare_lm_test.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.compare_lr_test.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.condition_number.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.conf_int.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.cov_HC0.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.cov_HC1.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.cov_HC2.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.cov_HC3.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.cov_params.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.eigenvals.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.ess.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.f_pvalue.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.f_test.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.fittedvalues.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.fvalue.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.get_prediction.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.get_robustcov_results.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.initialize.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.llf.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.load.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.mse.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.mse_model.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.mse_resid.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.mse_total.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.nobs.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.normalized_cov_params.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.predict.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.prsquared.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.pvalues.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.remove_data.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.resid.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.resid_pearson.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.rsquared.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.rsquared_adj.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.save.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.scale.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.ssr.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.summary.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.summary2.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.t_test.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.t_test_pairwise.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.tvalues.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.uncentered_tss.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.use_t.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.wald_test.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.wald_test_terms.rst │ │ ├── statsmodels.regression.quantile_regression.QuantRegResults.wresid.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.endog_names.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.exog_names.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.filter.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.fit.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.from_formula.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.hessian.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.impulse_responses.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.information.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initial_variance.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initialization.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initialize.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initialize_approximate_diffuse.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initialize_known.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initialize_statespace.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.initialize_stationary.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.loglike.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.loglikelihood_burn.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.loglikeobs.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.observed_information_matrix.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.opg_information_matrix.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.param_names.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.predict.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.prepare_data.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.score.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.score_obs.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.set_conserve_memory.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.set_filter_method.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.set_inversion_method.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.set_smoother_output.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.set_stability_method.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.simulate.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.simulation_smoother.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.smooth.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.start_params.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.tolerance.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.transform_jacobian.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.transform_params.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.untransform_params.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLS.update.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.aic.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.bic.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.bse.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.centered_tss.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.conf_int.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params_approx.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params_oim.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params_opg.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params_robust.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params_robust_approx.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cov_params_robust_oim.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cusum.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.cusum_squares.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.ess.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.f_test.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.fittedvalues.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.forecast.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.get_forecast.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.get_prediction.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.hqic.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.impulse_responses.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.info_criteria.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.initialize.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.llf.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.llf_obs.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.llf_recursive.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.llf_recursive_obs.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.load.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.loglikelihood_burn.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.mse_model.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.mse_resid.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.mse_total.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.normalized_cov_params.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.plot_cusum.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.plot_cusum_squares.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.plot_diagnostics.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.plot_recursive_coefficient.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.predict.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.pvalues.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.recursive_coefficients.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.remove_data.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.resid.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.resid_recursive.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.rsquared.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.save.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.simulate.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.ssr.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.summary.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.t_test.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.t_test_pairwise.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.test_heteroskedasticity.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.test_normality.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.test_serial_correlation.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.tvalues.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.uncentered_tss.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.use_t.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.wald_test.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.wald_test_terms.rst │ │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.zvalues.rst │ │ ├── statsmodels.robust.norms.AndrewWave.psi.rst │ │ ├── statsmodels.robust.norms.AndrewWave.psi_deriv.rst │ │ ├── statsmodels.robust.norms.AndrewWave.rho.rst │ │ ├── statsmodels.robust.norms.AndrewWave.weights.rst │ │ ├── statsmodels.robust.norms.Hampel.psi.rst │ │ ├── statsmodels.robust.norms.Hampel.psi_deriv.rst │ │ ├── statsmodels.robust.norms.Hampel.rho.rst │ │ ├── statsmodels.robust.norms.Hampel.weights.rst │ │ ├── statsmodels.robust.norms.HuberT.psi.rst │ │ ├── statsmodels.robust.norms.HuberT.psi_deriv.rst │ │ ├── statsmodels.robust.norms.HuberT.rho.rst │ │ ├── statsmodels.robust.norms.HuberT.weights.rst │ │ ├── statsmodels.robust.norms.LeastSquares.psi.rst │ │ ├── statsmodels.robust.norms.LeastSquares.psi_deriv.rst │ │ ├── statsmodels.robust.norms.LeastSquares.rho.rst │ │ ├── statsmodels.robust.norms.LeastSquares.weights.rst │ │ ├── statsmodels.robust.norms.RamsayE.psi.rst │ │ ├── statsmodels.robust.norms.RamsayE.psi_deriv.rst │ │ ├── statsmodels.robust.norms.RamsayE.rho.rst │ │ ├── statsmodels.robust.norms.RamsayE.weights.rst │ │ ├── statsmodels.robust.norms.RobustNorm.psi.rst │ │ ├── statsmodels.robust.norms.RobustNorm.psi_deriv.rst │ │ ├── statsmodels.robust.norms.RobustNorm.rho.rst │ │ ├── statsmodels.robust.norms.RobustNorm.weights.rst │ │ ├── statsmodels.robust.norms.TrimmedMean.psi.rst │ │ ├── statsmodels.robust.norms.TrimmedMean.psi_deriv.rst │ │ ├── statsmodels.robust.norms.TrimmedMean.rho.rst │ │ ├── statsmodels.robust.norms.TrimmedMean.weights.rst │ │ ├── statsmodels.robust.norms.TukeyBiweight.psi.rst │ │ ├── statsmodels.robust.norms.TukeyBiweight.psi_deriv.rst │ │ ├── statsmodels.robust.norms.TukeyBiweight.rho.rst │ │ ├── statsmodels.robust.norms.TukeyBiweight.weights.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.deviance.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.endog_names.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.exog_names.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.fit.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.from_formula.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.hessian.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.information.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.initialize.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.loglike.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.predict.rst │ │ ├── statsmodels.robust.robust_linear_model.RLM.score.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.bcov_scaled.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.bcov_unscaled.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.bse.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.chisq.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.conf_int.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.cov_params.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.f_test.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.fittedvalues.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.initialize.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.llf.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.load.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.normalized_cov_params.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.predict.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.pvalues.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.remove_data.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.resid.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.save.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.sresid.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.summary.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.summary2.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.t_test.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.t_test_pairwise.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.tvalues.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.use_t.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.wald_test.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.wald_test_terms.rst │ │ ├── statsmodels.robust.robust_linear_model.RLMResults.weights.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.transformed.SquareFunc.derivminus.rst │ │ ├── statsmodels.sandbox.distributions.transformed.SquareFunc.derivplus.rst │ │ ├── statsmodels.sandbox.distributions.transformed.SquareFunc.inverseminus.rst │ │ ├── statsmodels.sandbox.distributions.transformed.SquareFunc.inverseplus.rst │ │ ├── statsmodels.sandbox.distributions.transformed.SquareFunc.squarefunc.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.var.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.cdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.entropy.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.expect.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.fit.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.fit_loc_scale.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.freeze.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.interval.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.isf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.logcdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.logpdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.logsf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.mean.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.median.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.moment.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.nnlf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.pdf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.ppf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.random_state.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.rvs.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.sf.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.stats.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.std.rst │ │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.var.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.calc_weightmatrix.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.endog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.exog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.fit.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.fitgmm.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.fitgmm_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.fititer.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.from_formula.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.gmmobjective.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.gmmobjective_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.gradient_momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.momcond_mean.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.results_class.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.score.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.score_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.set_param_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMM.start_weights.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.bse.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.bse_.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.calc_cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.compare_j.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.conf_int.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.f_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.get_bse.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.initialize.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.jtest.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.jval.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.llf.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.load.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.normalized_cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.pvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.q.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.remove_data.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.save.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.summary.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.t_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.t_test_pairwise.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.tvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.use_t.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.wald_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.GMMResults.wald_test_terms.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.endog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.exog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.fit.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.from_formula.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.hessian.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.information.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.initialize.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.loglike.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.score.rst │ │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.whiten.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.calc_weightmatrix.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.endog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.exog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.fit.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.fitgmm.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.fitgmm_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.fititer.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.fitstart.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.from_formula.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.get_error.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.gmmobjective.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.gmmobjective_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.gradient_momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.momcond_mean.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.results_class.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.score.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.score_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.set_param_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMM.start_weights.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.bse.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.bse_.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.calc_cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.compare_j.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.conf_int.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.f_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.fittedvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.get_bse.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.initialize.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.jtest.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.jval.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.llf.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.load.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.normalized_cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.pvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.q.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.remove_data.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.resid.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.save.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.ssr.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.summary.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.t_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.t_test_pairwise.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.tvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.use_t.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.wald_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.wald_test_terms.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.HC0_se.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.HC1_se.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.HC2_se.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.HC3_se.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.aic.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.bic.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.bse.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.centered_tss.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.compare_f_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.compare_lm_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.compare_lr_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.condition_number.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.conf_int.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.cov_HC0.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.cov_HC1.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.cov_HC2.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.cov_HC3.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.eigenvals.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.ess.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.f_pvalue.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.f_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.fittedvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.fvalue.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.get_prediction.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.get_robustcov_results.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.initialize.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.llf.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.load.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.mse_model.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.mse_resid.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.mse_total.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.nobs.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.normalized_cov_params.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.pvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.remove_data.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.resid.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.resid_pearson.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.rsquared.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.rsquared_adj.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.save.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.scale.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.spec_hausman.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.ssr.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.summary.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.summary2.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.t_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.t_test_pairwise.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.tvalues.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.uncentered_tss.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.use_t.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.wald_test.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.wald_test_terms.rst │ │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.wresid.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.calc_weightmatrix.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.endog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.exog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.fit.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.fitgmm.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.fitgmm_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.fititer.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.fitstart.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.from_formula.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.get_error.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.gmmobjective.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.gmmobjective_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.gradient_momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.momcond_mean.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.results_class.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.score.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.score_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.set_param_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.start_weights.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.calc_weightmatrix.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.endog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.exog_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.fit.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.fitgmm.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.fitgmm_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.fititer.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.fitstart.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.from_formula.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.get_error.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.gmmobjective.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.gmmobjective_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.gradient_momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.jac_error.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.jac_func.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.momcond.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.momcond_mean.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.predict.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.results_class.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.score.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.score_cu.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.set_param_names.rst │ │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.start_weights.rst │ │ ├── statsmodels.sandbox.stats.multicomp.GroupsStats.groupdemean.rst │ │ ├── statsmodels.sandbox.stats.multicomp.GroupsStats.groupsswithin.rst │ │ ├── statsmodels.sandbox.stats.multicomp.GroupsStats.groupvarwithin.rst │ │ ├── statsmodels.sandbox.stats.multicomp.GroupsStats.runbasic.rst │ │ ├── statsmodels.sandbox.stats.multicomp.GroupsStats.runbasic_old.rst │ │ ├── statsmodels.sandbox.stats.multicomp.MultiComparison.allpairtest.rst │ │ ├── statsmodels.sandbox.stats.multicomp.MultiComparison.getranks.rst │ │ ├── statsmodels.sandbox.stats.multicomp.MultiComparison.kruskal.rst │ │ ├── statsmodels.sandbox.stats.multicomp.MultiComparison.tukeyhsd.rst │ │ ├── statsmodels.sandbox.stats.multicomp.StepDown.check_set.rst │ │ ├── statsmodels.sandbox.stats.multicomp.StepDown.get_crit.rst │ │ ├── statsmodels.sandbox.stats.multicomp.StepDown.get_distance_matrix.rst │ │ ├── statsmodels.sandbox.stats.multicomp.StepDown.iter_subsets.rst │ │ ├── statsmodels.sandbox.stats.multicomp.StepDown.run.rst │ │ ├── statsmodels.sandbox.stats.multicomp.StepDown.stepdown.rst │ │ ├── statsmodels.sandbox.stats.multicomp.TukeyHSDResults.plot_simultaneous.rst │ │ ├── statsmodels.sandbox.stats.multicomp.TukeyHSDResults.summary.rst │ │ ├── statsmodels.sandbox.stats.runs.Runs.runs_test.rst │ │ ├── statsmodels.sandbox.sysreg.SUR.fit.rst │ │ ├── statsmodels.sandbox.sysreg.SUR.initialize.rst │ │ ├── statsmodels.sandbox.sysreg.SUR.predict.rst │ │ ├── statsmodels.sandbox.sysreg.SUR.whiten.rst │ │ ├── statsmodels.sandbox.sysreg.Sem2SLS.fit.rst │ │ ├── statsmodels.sandbox.sysreg.Sem2SLS.whiten.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.acf.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.acf2spdfreq.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.acovf.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.arma2ar.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.arma2ma.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.arroots.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.fftar.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.fftarma.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.fftma.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.filter.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.filter2.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.from_coeffs.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.from_estimation.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.generate_sample.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.impulse_response.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.invertroots.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.invpowerspd.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.isinvertible.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.isstationary.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.maroots.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.pacf.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.pad.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.padarr.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.periodogram.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.plot4.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.spd.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.spddirect.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.spdmapoly.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.spdpoly.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.spdroots.rst │ │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.spdshift.rst │ │ ├── statsmodels.stats.anova.AnovaRM.fit.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.chi2_contribs.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.cumulative_log_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.cumulative_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.fittedvalues.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.from_data.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.homogeneity.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.independence_probabilities.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.local_log_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.local_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.marginal_probabilities.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.resid_pearson.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.standardized_resids.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.summary.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.symmetry.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.test_nominal_association.rst │ │ ├── statsmodels.stats.contingency_tables.SquareTable.test_ordinal_association.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.from_data.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.logodds_pooled.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.logodds_pooled_confint.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.logodds_pooled_se.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.oddsratio_pooled.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.oddsratio_pooled_confint.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.risk_pooled.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.riskratio_pooled.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.summary.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.test_equal_odds.rst │ │ ├── statsmodels.stats.contingency_tables.StratifiedTable.test_null_odds.rst │ │ ├── statsmodels.stats.contingency_tables.Table.chi2_contribs.rst │ │ ├── statsmodels.stats.contingency_tables.Table.cumulative_log_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table.cumulative_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table.fittedvalues.rst │ │ ├── statsmodels.stats.contingency_tables.Table.from_data.rst │ │ ├── statsmodels.stats.contingency_tables.Table.independence_probabilities.rst │ │ ├── statsmodels.stats.contingency_tables.Table.local_log_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table.local_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table.marginal_probabilities.rst │ │ ├── statsmodels.stats.contingency_tables.Table.resid_pearson.rst │ │ ├── statsmodels.stats.contingency_tables.Table.standardized_resids.rst │ │ ├── statsmodels.stats.contingency_tables.Table.test_nominal_association.rst │ │ ├── statsmodels.stats.contingency_tables.Table.test_ordinal_association.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.chi2_contribs.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.cumulative_log_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.cumulative_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.fittedvalues.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.from_data.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.homogeneity.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.independence_probabilities.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.local_log_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.local_oddsratios.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_oddsratio.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_oddsratio_confint.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_oddsratio_pvalue.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_oddsratio_se.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_riskratio.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_riskratio_confint.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_riskratio_pvalue.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.log_riskratio_se.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.marginal_probabilities.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.oddsratio.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.oddsratio_confint.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.oddsratio_pvalue.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.resid_pearson.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.riskratio.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.riskratio_confint.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.riskratio_pvalue.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.standardized_resids.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.summary.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.symmetry.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.test_nominal_association.rst │ │ ├── statsmodels.stats.contingency_tables.Table2x2.test_ordinal_association.rst │ │ ├── statsmodels.stats.correlation_tools.FactoredPSDMatrix.decorrelate.rst │ │ ├── statsmodels.stats.correlation_tools.FactoredPSDMatrix.logdet.rst │ │ ├── statsmodels.stats.correlation_tools.FactoredPSDMatrix.solve.rst │ │ ├── statsmodels.stats.correlation_tools.FactoredPSDMatrix.to_matrix.rst │ │ ├── statsmodels.stats.diagnostic.CompareCox.run.rst │ │ ├── statsmodels.stats.diagnostic.CompareJ.run.rst │ │ ├── statsmodels.stats.diagnostic.HetGoldfeldQuandt.run.rst │ │ ├── statsmodels.stats.knockoff_regeffects.CorrelationEffects.stats.rst │ │ ├── statsmodels.stats.knockoff_regeffects.ForwardEffects.stats.rst │ │ ├── statsmodels.stats.knockoff_regeffects.OLSEffects.stats.rst │ │ ├── statsmodels.stats.knockoff_regeffects.RegModelEffects.stats.rst │ │ ├── statsmodels.stats.mediation.Mediation.fit.rst │ │ ├── statsmodels.stats.mediation.MediationResults.summary.rst │ │ ├── statsmodels.stats.multitest.NullDistribution.pdf.rst │ │ ├── statsmodels.stats.multitest.RegressionFDR.summary.rst │ │ ├── statsmodels.stats.multitest.RegressionFDR.threshold.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.cooks_distance.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.d_fittedvalues.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.d_fittedvalues_scaled.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.d_linpred.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.d_linpred_scaled.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.d_params.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.dfbetas.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.hat_matrix_diag.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.params_one.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.plot_index.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.plot_influence.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.resid_studentized.rst │ │ ├── statsmodels.stats.outliers_influence.GLMInfluence.summary_frame.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.cooks_distance.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.d_fittedvalues.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.d_fittedvalues_scaled.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.d_params.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.dfbetas.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.hat_matrix_diag.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.params_one.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.plot_index.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.plot_influence.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.resid_studentized.rst │ │ ├── statsmodels.stats.outliers_influence.MLEInfluence.summary_frame.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.cooks_distance.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.cov_ratio.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.det_cov_params_not_obsi.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.dfbeta.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.dfbetas.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.dffits.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.dffits_internal.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.ess_press.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.get_resid_studentized_external.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.hat_diag_factor.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.hat_matrix_diag.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.influence.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.params_not_obsi.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.plot_index.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.plot_influence.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.resid_press.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.resid_std.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.resid_studentized.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.resid_studentized_external.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.resid_studentized_internal.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.resid_var.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.sigma2_not_obsi.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.summary_frame.rst │ │ ├── statsmodels.stats.outliers_influence.OLSInfluence.summary_table.rst │ │ ├── statsmodels.stats.power.FTestAnovaPower.plot_power.rst │ │ ├── statsmodels.stats.power.FTestAnovaPower.power.rst │ │ ├── statsmodels.stats.power.FTestAnovaPower.solve_power.rst │ │ ├── statsmodels.stats.power.FTestPower.plot_power.rst │ │ ├── statsmodels.stats.power.FTestPower.power.rst │ │ ├── statsmodels.stats.power.FTestPower.solve_power.rst │ │ ├── statsmodels.stats.power.GofChisquarePower.plot_power.rst │ │ ├── statsmodels.stats.power.GofChisquarePower.power.rst │ │ ├── statsmodels.stats.power.GofChisquarePower.solve_power.rst │ │ ├── statsmodels.stats.power.NormalIndPower.plot_power.rst │ │ ├── statsmodels.stats.power.NormalIndPower.power.rst │ │ ├── statsmodels.stats.power.NormalIndPower.solve_power.rst │ │ ├── statsmodels.stats.power.TTestIndPower.plot_power.rst │ │ ├── statsmodels.stats.power.TTestIndPower.power.rst │ │ ├── statsmodels.stats.power.TTestIndPower.solve_power.rst │ │ ├── statsmodels.stats.power.TTestPower.plot_power.rst │ │ ├── statsmodels.stats.power.TTestPower.power.rst │ │ ├── statsmodels.stats.power.TTestPower.solve_power.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.dof_satt.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.from_data.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.std_meandiff_pooledvar.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.std_meandiff_separatevar.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.summary.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.tconfint_diff.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.ttest_ind.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.ttost_ind.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.zconfint_diff.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.ztest_ind.rst │ │ ├── statsmodels.stats.weightstats.CompareMeans.ztost_ind.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.asrepeats.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.corrcoef.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.cov.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.demeaned.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.get_compare.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.nobs.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.quantile.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.std.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.std_ddof.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.std_mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.sum.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.sum_weights.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.sumsquares.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.tconfint_mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.ttest_mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.ttost_mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.var.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.var_ddof.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.zconfint_mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.ztest_mean.rst │ │ ├── statsmodels.stats.weightstats.DescrStatsW.ztost_mean.rst │ │ ├── statsmodels.tsa.ar_model.AR.endog_names.rst │ │ ├── statsmodels.tsa.ar_model.AR.exog_names.rst │ │ ├── statsmodels.tsa.ar_model.AR.fit.rst │ │ ├── statsmodels.tsa.ar_model.AR.from_formula.rst │ │ ├── statsmodels.tsa.ar_model.AR.hessian.rst │ │ ├── statsmodels.tsa.ar_model.AR.information.rst │ │ ├── statsmodels.tsa.ar_model.AR.initialize.rst │ │ ├── statsmodels.tsa.ar_model.AR.loglike.rst │ │ ├── statsmodels.tsa.ar_model.AR.predict.rst │ │ ├── statsmodels.tsa.ar_model.AR.score.rst │ │ ├── statsmodels.tsa.ar_model.AR.select_order.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.aic.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.bic.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.bse.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.conf_int.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.cov_params.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.f_test.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.fittedvalues.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.fpe.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.hqic.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.initialize.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.llf.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.load.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.preddoc.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.predict.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.pvalues.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.remove_data.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.resid.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.roots.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.save.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.scale.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.sigma2.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.summary.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.t_test.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.tvalues.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.use_t.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.wald_test.rst │ │ ├── statsmodels.tsa.ar_model.ARResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.endog_names.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.exog_names.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.fit.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.from_formula.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.geterrors.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.hessian.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.information.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.initialize.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.loglike.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.loglike_css.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.loglike_kalman.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.predict.rst │ │ ├── statsmodels.tsa.arima_model.ARIMA.score.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.aic.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.arfreq.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.arparams.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.arroots.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.bic.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.bse.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.conf_int.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.cov_params.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.f_test.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.fittedvalues.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.forecast.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.hqic.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.initialize.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.llf.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.load.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.mafreq.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.maparams.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.maroots.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.plot_predict.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.predict.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.pvalues.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.remove_data.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.resid.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.save.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.summary.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.summary2.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.t_test.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.tvalues.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.use_t.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.wald_test.rst │ │ ├── statsmodels.tsa.arima_model.ARIMAResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.endog_names.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.exog_names.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.fit.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.from_formula.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.geterrors.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.hessian.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.information.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.initialize.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.loglike.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.loglike_css.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.loglike_kalman.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.predict.rst │ │ ├── statsmodels.tsa.arima_model.ARMA.score.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.aic.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.arfreq.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.arparams.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.arroots.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.bic.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.bse.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.conf_int.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.cov_params.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.f_test.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.fittedvalues.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.forecast.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.hqic.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.initialize.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.llf.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.load.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.mafreq.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.maparams.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.maroots.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.plot_predict.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.predict.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.pvalues.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.remove_data.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.resid.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.save.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.summary.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.summary2.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.t_test.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.tvalues.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.use_t.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.wald_test.rst │ │ ├── statsmodels.tsa.arima_model.ARMAResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.acf.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.acovf.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.arma2ar.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.arma2ma.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.arroots.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.from_coeffs.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.from_estimation.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.generate_sample.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.impulse_response.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.invertroots.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.isinvertible.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.isstationary.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.maroots.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.pacf.rst │ │ ├── statsmodels.tsa.arima_process.ArmaProcess.periodogram.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.endog_names.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.exog_names.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.fit.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.from_formula.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.hessian.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.information.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.initial_values.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.initialize.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.loglike.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.predict.rst │ │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.score.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.endog_names.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.exog_names.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.fit.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.from_formula.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.hessian.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.information.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.initial_values.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.initialize.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.loglike.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.predict.rst │ │ ├── statsmodels.tsa.holtwinters.Holt.score.rst │ │ ├── statsmodels.tsa.holtwinters.HoltWintersResults.forecast.rst │ │ ├── statsmodels.tsa.holtwinters.HoltWintersResults.initialize.rst │ │ ├── statsmodels.tsa.holtwinters.HoltWintersResults.predict.rst │ │ ├── statsmodels.tsa.holtwinters.HoltWintersResults.summary.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.endog_names.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.exog_names.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.fit.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.from_formula.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.hessian.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.information.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.initial_values.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.initialize.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.loglike.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.predict.rst │ │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.score.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.endog_names.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.exog_names.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.filter.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.fit.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.from_formula.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.hessian.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.information.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.initial_probabilities.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.initialize.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.initialize_known.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.initialize_steady_state.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.k_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.loglike.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.loglikeobs.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.param_names.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.predict.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.predict_conditional.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.regime_transition_matrix.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.score.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.score_obs.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.smooth.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.start_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.transform_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.untransform_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.endog_names.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.exog_names.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.filter.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.fit.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.from_formula.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.hessian.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.information.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.initial_probabilities.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.initialize.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.initialize_known.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.initialize_steady_state.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.k_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.loglike.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.loglikeobs.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.param_names.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.predict.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.predict_conditional.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.regime_transition_matrix.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.score.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.score_obs.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.smooth.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.start_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.transform_params.rst │ │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.untransform_params.rst │ │ ├── statsmodels.tsa.seasonal.DecomposeResult.plot.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.endog_names.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.exog_names.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.filter.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.fit.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.from_formula.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.hessian.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.information.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initial_variance.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initialization.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initialize.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initialize_statespace.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.loglike.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.observed_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.opg_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.param_names.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.predict.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.prepare_data.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.score.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.score_obs.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.simulate.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.simulation_smoother.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.smooth.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.start_params.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.tolerance.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.transform_jacobian.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.transform_params.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.untransform_params.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.update.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.aic.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.bic.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.bse.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.coefficients_of_determination.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.conf_int.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params_approx.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params_oim.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params_opg.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params_robust.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params_robust_approx.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.cov_params_robust_oim.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.f_test.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.factors.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.fittedvalues.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.forecast.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.get_forecast.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.get_prediction.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.hqic.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.info_criteria.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.initialize.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.llf.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.llf_obs.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.load.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.plot_coefficients_of_determination.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.plot_diagnostics.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.predict.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.pvalues.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.remove_data.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.resid.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.save.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.simulate.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.summary.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.t_test.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.test_heteroskedasticity.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.test_normality.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.test_serial_correlation.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.tvalues.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.use_t.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.wald_test.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.zvalues.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.FilterResults.kalman_gain.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.FilterResults.predict.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.FilterResults.standardized_forecasts_error.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.FilterResults.update_filter.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.FilterResults.update_representation.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.bind.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.design.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.dtype.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.endog.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_augmented.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_collapsed.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_concentrated.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_conventional.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_exact_initial.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_extended.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_square_root.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_timing.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_univariate.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.filter_unscented.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.fixed_scale.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.initialize.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.initialize_diffuse.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.inversion_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.inversion_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.invert_cholesky.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.invert_lu.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.invert_univariate.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.loglike.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_conserve.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_filtered.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_forecast.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_gain.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_likelihood.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_predicted.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_smoothing.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_no_std_forecast.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_options.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.memory_store_all.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.obs.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.obs_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.obs_intercept.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.prefix.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.selection.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.set_filter_timing.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.simulate.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.solve_cholesky.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.solve_lu.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.stability_force_symmetry.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.stability_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.stability_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.state_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.state_intercept.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.time_invariant.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.timing_init_filtered.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.timing_init_predicted.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.timing_options.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.transition.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.filter_attributes.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.kalman_gain.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.predict.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.representation_attributes.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.standardized_forecasts_error.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.update_filter.rst │ │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.update_representation.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.bind.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.design.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.dtype.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.endog.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_augmented.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_collapsed.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_concentrated.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_conventional.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_exact_initial.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_extended.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_square_root.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_timing.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_univariate.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.filter_unscented.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.fixed_scale.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.initialize.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.initialize_diffuse.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.inversion_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.inversion_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.invert_cholesky.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.invert_lu.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.invert_univariate.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.loglike.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_conserve.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_filtered.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_forecast.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_gain.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_likelihood.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_predicted.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_smoothing.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_no_std_forecast.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_options.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.memory_store_all.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.obs.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.obs_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.obs_intercept.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.prefix.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.selection.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_filter_timing.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_smooth_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.simulate.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth_alternative.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth_classical.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth_conventional.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smooth_univariate.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_all.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_disturbance.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_disturbance_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_output.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_outputs.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_state.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_state_autocov.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.smoother_state_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.solve_cholesky.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.solve_lu.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.stability_force_symmetry.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.stability_method.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.stability_methods.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.state_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.state_intercept.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.time_invariant.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.timing_init_filtered.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.timing_init_predicted.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.timing_options.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.transition.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.kalman_gain.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.predict.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.smoothed_forecasts.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.smoothed_forecasts_error.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.smoothed_forecasts_error_cov.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.standardized_forecasts_error.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.update_filter.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.update_representation.rst │ │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.update_smoother.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.endog_names.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.exog_names.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.filter.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.fit.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.from_formula.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.hessian.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.information.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initial_variance.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initialization.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initialize.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initialize_statespace.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.loglike.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.observed_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.opg_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.param_names.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.predict.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.prepare_data.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.score.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.score_obs.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.simulate.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.simulation_smoother.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.smooth.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.start_params.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.tolerance.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.transform_jacobian.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.transform_params.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.untransform_params.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.update.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.aic.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.bic.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.bse.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.conf_int.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params_approx.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params_oim.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params_opg.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params_robust.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params_robust_approx.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.cov_params_robust_oim.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.f_test.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.fittedvalues.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.forecast.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.get_forecast.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.get_prediction.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.hqic.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.info_criteria.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.initialize.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.llf.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.llf_obs.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.load.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.plot_diagnostics.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.predict.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.pvalues.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.remove_data.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.resid.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.save.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.simulate.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.summary.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.t_test.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.test_heteroskedasticity.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.test_normality.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.test_serial_correlation.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.tvalues.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.use_t.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.wald_test.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.zvalues.rst │ │ ├── statsmodels.tsa.statespace.representation.FrozenRepresentation.update_representation.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.bind.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.design.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.dtype.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.endog.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.initialize.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.initialize_diffuse.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.obs.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.obs_cov.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.obs_intercept.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.prefix.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.selection.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.state_cov.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.state_intercept.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.time_invariant.rst │ │ ├── statsmodels.tsa.statespace.representation.Representation.transition.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.endog_names.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.exog_names.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.filter.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.fit.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.from_formula.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.hessian.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.information.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initial_design.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initial_selection.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initial_state_intercept.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initial_transition.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initial_variance.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialization.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialize.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialize_default.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialize_statespace.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.loglike.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.model_latex_names.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.model_names.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.model_orders.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.observed_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.opg_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.param_names.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.param_terms.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.params_complete.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.predict.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.prepare_data.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.score.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.score_obs.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.simulate.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.simulation_smoother.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.smooth.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.start_params.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.tolerance.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.transform_jacobian.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.transform_params.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.untransform_params.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.update.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.aic.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.arfreq.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.arparams.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.arroots.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.bic.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.bse.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.conf_int.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params_approx.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params_oim.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params_opg.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params_robust.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params_robust_approx.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.cov_params_robust_oim.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.f_test.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.fittedvalues.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.forecast.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.get_forecast.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.get_prediction.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.hqic.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.info_criteria.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.initialize.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.llf.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.llf_obs.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.load.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.mafreq.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.maparams.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.maroots.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.plot_diagnostics.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.predict.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.pvalues.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.remove_data.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.resid.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.save.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.seasonalarparams.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.seasonalmaparams.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.simulate.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.summary.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.t_test.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.test_heteroskedasticity.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.test_normality.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.test_serial_correlation.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.tvalues.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.use_t.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.wald_test.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.zvalues.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.generated_measurement_disturbance.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.generated_obs.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.generated_state.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.generated_state_disturbance.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulate.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulate_all.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulate_disturbance.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulate_state.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulated_measurement_disturbance.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulated_state.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulated_state_disturbance.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.simulation_output.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.bind.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.design.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.dtype.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.endog.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_augmented.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_collapsed.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_concentrated.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_conventional.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_exact_initial.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_extended.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_methods.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_square_root.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_timing.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_univariate.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.filter_unscented.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.fixed_scale.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.get_simulation_output.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.initialize.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.initialize_diffuse.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.inversion_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.inversion_methods.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.invert_cholesky.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.invert_lu.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.invert_univariate.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.loglike.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_conserve.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_filtered.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_forecast.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_gain.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_likelihood.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_predicted.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_smoothing.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_no_std_forecast.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_options.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.memory_store_all.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.obs.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.obs_cov.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.obs_intercept.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.prefix.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.selection.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_filter_timing.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_smooth_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.simulate.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.simulation_outputs.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.simulation_smoother.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth_alternative.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth_classical.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth_conventional.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth_methods.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smooth_univariate.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_all.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_disturbance.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_disturbance_cov.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_output.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_outputs.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_state.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_state_autocov.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.smoother_state_cov.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.solve_cholesky.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.solve_lu.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.stability_force_symmetry.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.stability_method.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.stability_methods.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.state_cov.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.state_intercept.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.time_invariant.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.timing_init_filtered.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.timing_init_predicted.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.timing_options.rst │ │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.transition.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.endog_names.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.exog_names.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.filter.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.fit.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.from_formula.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.hessian.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.information.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initial_variance.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialization.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialize.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialize_default.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialize_statespace.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.loglike.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.observed_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.opg_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.param_names.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.predict.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.prepare_data.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.score.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.score_obs.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.setup.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.simulate.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.simulation_smoother.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.smooth.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.start_params.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.tolerance.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.transform_jacobian.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.transform_params.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.untransform_params.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.update.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.aic.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.autoregressive.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.bic.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.bse.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.conf_int.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params_approx.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params_oim.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params_opg.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params_robust.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params_robust_approx.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cov_params_robust_oim.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.cycle.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.f_test.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.fittedvalues.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.forecast.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.freq_seasonal.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.get_forecast.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.get_prediction.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.hqic.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.info_criteria.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.initialize.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.level.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.llf.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.llf_obs.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.load.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.plot_components.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.plot_diagnostics.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.predict.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.pvalues.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.regression_coefficients.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.remove_data.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.resid.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.save.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.seasonal.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.simulate.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.summary.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.t_test.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.test_heteroskedasticity.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.test_normality.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.test_serial_correlation.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.trend.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.tvalues.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.use_t.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.wald_test.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.zvalues.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.endog_names.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.exog_names.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.filter.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.fit.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.from_formula.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.hessian.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.information.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initial_variance.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initialization.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initialize.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initialize_approximate_diffuse.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initialize_known.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initialize_statespace.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.initialize_stationary.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.loglike.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.loglikeobs.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.observed_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.opg_information_matrix.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.param_names.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.predict.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.prepare_data.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.score.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.score_obs.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.set_conserve_memory.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.set_filter_method.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.set_inversion_method.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.set_smoother_output.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.set_stability_method.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.simulate.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.simulation_smoother.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.smooth.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.start_params.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.tolerance.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.transform_jacobian.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.transform_params.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.untransform_params.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAX.update.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.aic.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.bic.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.bse.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.conf_int.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params_approx.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params_oim.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params_opg.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params_robust.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params_robust_approx.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.cov_params_robust_oim.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.f_test.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.fittedvalues.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.forecast.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.get_forecast.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.get_prediction.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.hqic.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.impulse_responses.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.info_criteria.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.initialize.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.llf.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.llf_obs.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.load.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.loglikelihood_burn.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.normalized_cov_params.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.plot_diagnostics.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.predict.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.pvalues.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.remove_data.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.resid.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.save.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.simulate.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.summary.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.t_test.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.t_test_pairwise.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.test_heteroskedasticity.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.test_normality.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.test_serial_correlation.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.tvalues.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.use_t.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.wald_test.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.wald_test_terms.rst │ │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.zvalues.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.getisinvertible.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.getisstationary.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.hstack.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.hstackarma_minus1.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.reduceform.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.stacksquare.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.vstack.rst │ │ ├── statsmodels.tsa.varma_process.VarmaPoly.vstackarma_minus1.rst │ │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.CausalityTestResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.HypothesisTestResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.NormalityTestResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.WhitenessTestResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.G.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.H.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.cov.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.cum_effect_cov.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.cum_effect_stderr.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.cum_errband_mc.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.err_band_sz1.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.err_band_sz2.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.err_band_sz3.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.errband_mc.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.fevd_table.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.lr_effect_cov.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.lr_effect_stderr.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.plot.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.plot_cum_effects.rst │ │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.stderr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.check_order.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.check_rank.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.endog_names.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.exog_names.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.fit.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.from_formula.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.hessian.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.information.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.initialize.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.loglike.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.predict.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.score.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.y.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.acf.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.forecast.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.forecast_cov.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.forecast_interval.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.get_eq_index.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.intercept_longrun.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.is_stable.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.long_run_effects.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.mean.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.mse.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.orth_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.plot_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.plotsim.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.simulate_var.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.svar_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.to_vecm.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.acf.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.aic.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.bic.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.bse.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.cov_params.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.cov_ybar.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.detomega.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.df_model.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.df_resid.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.fevd.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.fittedvalues.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.forecast.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.forecast_cov.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.forecast_interval.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.fpe.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.get_eq_index.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.hqic.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.info_criteria.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.intercept_longrun.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.irf.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.irf_errband_mc.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.irf_resim.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.is_stable.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.llf.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.long_run_effects.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.mean.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.mse.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.orth_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.plot.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.plot_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.plot_forecast.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.plot_sample_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.plotsim.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.pvalues.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.pvalues_dt.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.pvalues_endog_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.reorder.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.resid.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.resid_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.resid_acov.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.resid_corr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.roots.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.sample_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.sample_acov.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.sigma_u_mle.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.simulate_var.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.sirf_errband_mc.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.stderr.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.stderr_dt.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.stderr_endog_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.svar_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.test_causality.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.test_inst_causality.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.test_normality.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.test_whiteness.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.to_vecm.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.tvalues.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.tvalues_dt.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.tvalues_endog_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.y.rst │ │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.ys_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.FEVD.cov.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.FEVD.plot.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.FEVD.summary.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.LagOrderResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.endog_names.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.exog_names.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.fit.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.from_formula.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.hessian.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.information.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.initialize.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.loglike.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.predict.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.score.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.select_order.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VAR.y.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.acf.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.forecast.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.forecast_cov.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.forecast_interval.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.get_eq_index.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.intercept_longrun.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.is_stable.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.long_run_effects.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.mean.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.mse.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.orth_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.plot_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.plotsim.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.simulate_var.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.to_vecm.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.acf.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.aic.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.bic.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.bse.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.cov_params.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.cov_ybar.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.detomega.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.df_model.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.df_resid.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.fevd.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.fittedvalues.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.forecast.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.forecast_cov.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.forecast_interval.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.fpe.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.get_eq_index.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.hqic.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.info_criteria.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.intercept_longrun.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.irf.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.irf_errband_mc.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.irf_resim.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.is_stable.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.llf.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.long_run_effects.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.mean.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.mse.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.orth_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.plot.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.plot_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.plot_forecast.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.plot_sample_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.plotsim.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.pvalues.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.pvalues_dt.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.pvalues_endog_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.reorder.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.resid.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.resid_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.resid_acov.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.resid_corr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.roots.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.sample_acorr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.sample_acov.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.sigma_u_mle.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.simulate_var.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.stderr.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.stderr_dt.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.stderr_endog_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.test_causality.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.test_inst_causality.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.test_normality.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.test_whiteness.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.to_vecm.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.tvalues.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.tvalues_dt.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.tvalues_endog_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.y.rst │ │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.ys_lagged.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.CointRankResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.endog_names.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.exog_names.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.fit.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.from_formula.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.hessian.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.information.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.initialize.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.loglike.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.predict.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECM.score.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.conf_int_alpha.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.conf_int_beta.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.conf_int_det_coef.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.conf_int_det_coef_coint.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.conf_int_gamma.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.cov_params_default.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.cov_params_wo_det.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.cov_var_repr.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.fittedvalues.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.irf.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.llf.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.orth_ma_rep.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.plot_data.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.plot_forecast.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.predict.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_alpha.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_beta.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef_coint.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.resid.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_alpha.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_beta.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_coint.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_det_coef.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_det_coef_coint.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_gamma.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.stderr_params.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.summary.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.test_granger_causality.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.test_inst_causality.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.test_normality.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.test_whiteness.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.tvalues_alpha.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.tvalues_beta.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.tvalues_det_coef.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.tvalues_det_coef_coint.rst │ │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.tvalues_gamma.rst │ │ └── statsmodels.tsa.vector_ar.vecm.VECMResults.var_rep.rst │ ├── statsmodels.base.distributed_estimation.DistributedModel.rst │ ├── statsmodels.base.distributed_estimation.DistributedResults.rst │ ├── statsmodels.base.elastic_net.RegularizedResults.rst │ ├── statsmodels.base.optimizer.Optimizer.rst │ ├── statsmodels.base.optimizer._fit_basinhopping.rst │ ├── statsmodels.base.optimizer._fit_bfgs.rst │ ├── statsmodels.base.optimizer._fit_cg.rst │ ├── statsmodels.base.optimizer._fit_lbfgs.rst │ ├── statsmodels.base.optimizer._fit_ncg.rst │ ├── statsmodels.base.optimizer._fit_newton.rst │ ├── statsmodels.base.optimizer._fit_nm.rst │ ├── statsmodels.base.optimizer._fit_powell.rst │ ├── statsmodels.discrete.conditional_models.ConditionalLogit.rst │ ├── statsmodels.discrete.conditional_models.ConditionalMNLogit.rst │ ├── statsmodels.discrete.conditional_models.ConditionalPoisson.rst │ ├── statsmodels.discrete.count_model.GenericZeroInflated.rst │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.rst │ ├── statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoissonResults.rst │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialP.rst │ ├── statsmodels.discrete.count_model.ZeroInflatedNegativeBinomialResults.rst │ ├── statsmodels.discrete.count_model.ZeroInflatedPoisson.rst │ ├── statsmodels.discrete.count_model.ZeroInflatedPoissonResults.rst │ ├── statsmodels.discrete.discrete_model.BinaryModel.rst │ ├── statsmodels.discrete.discrete_model.BinaryResults.rst │ ├── statsmodels.discrete.discrete_model.CountModel.rst │ ├── statsmodels.discrete.discrete_model.CountResults.rst │ ├── statsmodels.discrete.discrete_model.DiscreteModel.rst │ ├── statsmodels.discrete.discrete_model.DiscreteResults.rst │ ├── statsmodels.discrete.discrete_model.GeneralizedPoisson.rst │ ├── statsmodels.discrete.discrete_model.GeneralizedPoissonResults.rst │ ├── statsmodels.discrete.discrete_model.Logit.rst │ ├── statsmodels.discrete.discrete_model.LogitResults.rst │ ├── statsmodels.discrete.discrete_model.MNLogit.rst │ ├── statsmodels.discrete.discrete_model.MultinomialModel.rst │ ├── statsmodels.discrete.discrete_model.MultinomialResults.rst │ ├── statsmodels.discrete.discrete_model.NegativeBinomial.rst │ ├── statsmodels.discrete.discrete_model.NegativeBinomialP.rst │ ├── statsmodels.discrete.discrete_model.NegativeBinomialResults.rst │ ├── statsmodels.discrete.discrete_model.Poisson.rst │ ├── statsmodels.discrete.discrete_model.Probit.rst │ ├── statsmodels.discrete.discrete_model.ProbitResults.rst │ ├── statsmodels.distributions.empirical_distribution.ECDF.rst │ ├── statsmodels.distributions.empirical_distribution.StepFunction.rst │ ├── statsmodels.distributions.empirical_distribution.monotone_fn_inverter.rst │ ├── statsmodels.duration.hazard_regression.PHReg.rst │ ├── statsmodels.duration.hazard_regression.PHRegResults.rst │ ├── statsmodels.duration.survfunc.SurvfuncRight.rst │ ├── statsmodels.emplike.descriptive.DescStat.rst │ ├── statsmodels.emplike.descriptive.DescStatMV.rst │ ├── statsmodels.emplike.descriptive.DescStatUV.rst │ ├── statsmodels.formula.api.gee.rst │ ├── statsmodels.formula.api.glm.rst │ ├── statsmodels.formula.api.glmgam.rst │ ├── statsmodels.formula.api.gls.rst │ ├── statsmodels.formula.api.glsar.rst │ ├── statsmodels.formula.api.logit.rst │ ├── statsmodels.formula.api.mixedlm.rst │ ├── statsmodels.formula.api.mnlogit.rst │ ├── statsmodels.formula.api.negativebinomial.rst │ ├── statsmodels.formula.api.nominal_gee.rst │ ├── statsmodels.formula.api.ols.rst │ ├── statsmodels.formula.api.ordinal_gee.rst │ ├── statsmodels.formula.api.phreg.rst │ ├── statsmodels.formula.api.poisson.rst │ ├── statsmodels.formula.api.probit.rst │ ├── statsmodels.formula.api.quantreg.rst │ ├── statsmodels.formula.api.rlm.rst │ ├── statsmodels.formula.api.wls.rst │ ├── statsmodels.gam.generalized_additive_model.GLMGam.rst │ ├── statsmodels.gam.generalized_additive_model.GLMGamResults.rst │ ├── statsmodels.gam.generalized_additive_model.LogitGam.rst │ ├── statsmodels.gam.smooth_basis.BSplines.rst │ ├── statsmodels.gam.smooth_basis.CyclicCubicSplines.rst │ ├── statsmodels.genmod.bayes_mixed_glm.BayesMixedGLMResults.rst │ ├── statsmodels.genmod.bayes_mixed_glm.BinomialBayesMixedGLM.rst │ ├── statsmodels.genmod.bayes_mixed_glm.PoissonBayesMixedGLM.rst │ ├── statsmodels.genmod.cov_struct.Autoregressive.rst │ ├── statsmodels.genmod.cov_struct.CovStruct.rst │ ├── statsmodels.genmod.cov_struct.Exchangeable.rst │ ├── statsmodels.genmod.cov_struct.GlobalOddsRatio.rst │ ├── statsmodels.genmod.cov_struct.Independence.rst │ ├── statsmodels.genmod.cov_struct.Nested.rst │ ├── statsmodels.genmod.families.family.Binomial.rst │ ├── statsmodels.genmod.families.family.Family.rst │ ├── statsmodels.genmod.families.family.Gamma.rst │ ├── statsmodels.genmod.families.family.Gaussian.rst │ ├── statsmodels.genmod.families.family.InverseGaussian.rst │ ├── statsmodels.genmod.families.family.NegativeBinomial.rst │ ├── statsmodels.genmod.families.family.Poisson.rst │ ├── statsmodels.genmod.families.family.Tweedie.rst │ ├── statsmodels.genmod.families.links.CDFLink.rst │ ├── statsmodels.genmod.families.links.CLogLog.rst │ ├── statsmodels.genmod.families.links.Link.rst │ ├── statsmodels.genmod.families.links.Log.rst │ ├── statsmodels.genmod.families.links.Logit.rst │ ├── statsmodels.genmod.families.links.NegativeBinomial.rst │ ├── statsmodels.genmod.families.links.Power.rst │ ├── statsmodels.genmod.families.links.cauchy.rst │ ├── statsmodels.genmod.families.links.identity.rst │ ├── statsmodels.genmod.families.links.inverse_power.rst │ ├── statsmodels.genmod.families.links.inverse_squared.rst │ ├── statsmodels.genmod.families.links.nbinom.rst │ ├── statsmodels.genmod.families.links.probit.rst │ ├── statsmodels.genmod.families.varfuncs.Binomial.rst │ ├── statsmodels.genmod.families.varfuncs.NegativeBinomial.rst │ ├── statsmodels.genmod.families.varfuncs.Power.rst │ ├── statsmodels.genmod.families.varfuncs.VarianceFunction.rst │ ├── statsmodels.genmod.families.varfuncs.binary.rst │ ├── statsmodels.genmod.families.varfuncs.constant.rst │ ├── statsmodels.genmod.families.varfuncs.mu.rst │ ├── statsmodels.genmod.families.varfuncs.mu_cubed.rst │ ├── statsmodels.genmod.families.varfuncs.mu_squared.rst │ ├── statsmodels.genmod.families.varfuncs.nbinom.rst │ ├── statsmodels.genmod.generalized_estimating_equations.GEE.rst │ ├── statsmodels.genmod.generalized_estimating_equations.GEEMargins.rst │ ├── statsmodels.genmod.generalized_estimating_equations.GEEResults.rst │ ├── statsmodels.genmod.generalized_estimating_equations.NominalGEE.rst │ ├── statsmodels.genmod.generalized_estimating_equations.OrdinalGEE.rst │ ├── statsmodels.genmod.generalized_linear_model.GLM.rst │ ├── statsmodels.genmod.generalized_linear_model.GLMResults.rst │ ├── statsmodels.genmod.generalized_linear_model.PredictionResults.rst │ ├── statsmodels.genmod.qif.QIF.rst │ ├── statsmodels.genmod.qif.QIFResults.rst │ ├── statsmodels.graphics.agreement.mean_diff_plot.rst │ ├── statsmodels.graphics.boxplots.beanplot.rst │ ├── statsmodels.graphics.boxplots.violinplot.rst │ ├── statsmodels.graphics.correlation.plot_corr.rst │ ├── statsmodels.graphics.correlation.plot_corr_grid.rst │ ├── statsmodels.graphics.factorplots.interaction_plot.rst │ ├── statsmodels.graphics.functional.banddepth.rst │ ├── statsmodels.graphics.functional.fboxplot.rst │ ├── statsmodels.graphics.functional.hdrboxplot.rst │ ├── statsmodels.graphics.functional.rainbowplot.rst │ ├── statsmodels.graphics.gofplots.ProbPlot.rst │ ├── statsmodels.graphics.gofplots.qqline.rst │ ├── statsmodels.graphics.gofplots.qqplot.rst │ ├── statsmodels.graphics.gofplots.qqplot_2samples.rst │ ├── statsmodels.graphics.mosaicplot.mosaic.rst │ ├── statsmodels.graphics.plot_grids.scatter_ellipse.rst │ ├── statsmodels.graphics.regressionplots.abline_plot.rst │ ├── statsmodels.graphics.regressionplots.influence_plot.rst │ ├── statsmodels.graphics.regressionplots.plot_ccpr.rst │ ├── statsmodels.graphics.regressionplots.plot_ccpr_grid.rst │ ├── statsmodels.graphics.regressionplots.plot_ceres_residuals.rst │ ├── statsmodels.graphics.regressionplots.plot_fit.rst │ ├── statsmodels.graphics.regressionplots.plot_leverage_resid2.rst │ ├── statsmodels.graphics.regressionplots.plot_partregress.rst │ ├── statsmodels.graphics.regressionplots.plot_partregress_grid.rst │ ├── statsmodels.graphics.regressionplots.plot_regress_exog.rst │ ├── statsmodels.graphics.tsaplots.month_plot.rst │ ├── statsmodels.graphics.tsaplots.plot_acf.rst │ ├── statsmodels.graphics.tsaplots.plot_pacf.rst │ ├── statsmodels.graphics.tsaplots.quarter_plot.rst │ ├── statsmodels.imputation.bayes_mi.BayesGaussMI.rst │ ├── statsmodels.imputation.bayes_mi.MI.rst │ ├── statsmodels.imputation.mice.MICE.rst │ ├── statsmodels.imputation.mice.MICEData.rst │ ├── statsmodels.iolib.foreign.StataReader.rst │ ├── statsmodels.iolib.foreign.StataWriter.rst │ ├── statsmodels.iolib.foreign.genfromdta.rst │ ├── statsmodels.iolib.foreign.savetxt.rst │ ├── statsmodels.iolib.smpickle.load_pickle.rst │ ├── statsmodels.iolib.smpickle.save_pickle.rst │ ├── statsmodels.iolib.summary.Summary.rst │ ├── statsmodels.iolib.summary2.Summary.rst │ ├── statsmodels.iolib.table.SimpleTable.rst │ ├── statsmodels.iolib.table.csv2st.rst │ ├── statsmodels.miscmodels.count.PoissonGMLE.rst │ ├── statsmodels.miscmodels.count.PoissonOffsetGMLE.rst │ ├── statsmodels.miscmodels.count.PoissonZiGMLE.rst │ ├── statsmodels.miscmodels.tmodel.TLinearModel.rst │ ├── statsmodels.multivariate.cancorr.CanCorr.rst │ ├── statsmodels.multivariate.factor.Factor.rst │ ├── statsmodels.multivariate.factor.FactorResults.rst │ ├── statsmodels.multivariate.factor_rotation.procrustes.rst │ ├── statsmodels.multivariate.factor_rotation.promax.rst │ ├── statsmodels.multivariate.factor_rotation.rotate_factors.rst │ ├── statsmodels.multivariate.factor_rotation.target_rotation.rst │ ├── statsmodels.multivariate.manova.MANOVA.rst │ ├── statsmodels.multivariate.multivariate_ols.MultivariateTestResults.rst │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLS.rst │ ├── statsmodels.multivariate.multivariate_ols._MultivariateOLSResults.rst │ ├── statsmodels.multivariate.pca.PCA.rst │ ├── statsmodels.nonparametric.bandwidths.bw_scott.rst │ ├── statsmodels.nonparametric.bandwidths.bw_silverman.rst │ ├── statsmodels.nonparametric.bandwidths.select_bandwidth.rst │ ├── statsmodels.nonparametric.kde.KDEUnivariate.rst │ ├── statsmodels.nonparametric.kernel_density.EstimatorSettings.rst │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariate.rst │ ├── statsmodels.nonparametric.kernel_density.KDEMultivariateConditional.rst │ ├── statsmodels.nonparametric.kernel_regression.KernelCensoredReg.rst │ ├── statsmodels.nonparametric.kernel_regression.KernelReg.rst │ ├── statsmodels.nonparametric.smoothers_lowess.lowess.rst │ ├── statsmodels.regression.dimred.DimReductionResults.rst │ ├── statsmodels.regression.dimred.PrincipalHessianDirections.rst │ ├── statsmodels.regression.dimred.SlicedAverageVarianceEstimation.rst │ ├── statsmodels.regression.dimred.SlicedInverseReg.rst │ ├── statsmodels.regression.linear_model.GLS.rst │ ├── statsmodels.regression.linear_model.GLSAR.rst │ ├── statsmodels.regression.linear_model.OLS.rst │ ├── statsmodels.regression.linear_model.OLSResults.rst │ ├── statsmodels.regression.linear_model.PredictionResults.rst │ ├── statsmodels.regression.linear_model.RegressionResults.rst │ ├── statsmodels.regression.linear_model.WLS.rst │ ├── statsmodels.regression.linear_model.burg.rst │ ├── statsmodels.regression.linear_model.yule_walker.rst │ ├── statsmodels.regression.mixed_linear_model.MixedLM.rst │ ├── statsmodels.regression.mixed_linear_model.MixedLMResults.rst │ ├── statsmodels.regression.process_regression.GaussianCovariance.rst │ ├── statsmodels.regression.process_regression.ProcessMLE.rst │ ├── statsmodels.regression.process_regression.ProcessMLEResults.rst │ ├── statsmodels.regression.quantile_regression.QuantReg.rst │ ├── statsmodels.regression.quantile_regression.QuantRegResults.rst │ ├── statsmodels.regression.recursive_ls.RecursiveLS.rst │ ├── statsmodels.regression.recursive_ls.RecursiveLSResults.rst │ ├── statsmodels.robust.norms.AndrewWave.rst │ ├── statsmodels.robust.norms.Hampel.rst │ ├── statsmodels.robust.norms.HuberT.rst │ ├── statsmodels.robust.norms.LeastSquares.rst │ ├── statsmodels.robust.norms.RamsayE.rst │ ├── statsmodels.robust.norms.RobustNorm.rst │ ├── statsmodels.robust.norms.TrimmedMean.rst │ ├── statsmodels.robust.norms.TukeyBiweight.rst │ ├── statsmodels.robust.norms.estimate_location.rst │ ├── statsmodels.robust.robust_linear_model.RLM.rst │ ├── statsmodels.robust.robust_linear_model.RLMResults.rst │ ├── statsmodels.robust.scale.Huber.rst │ ├── statsmodels.robust.scale.HuberScale.rst │ ├── statsmodels.robust.scale.hubers_scale.rst │ ├── statsmodels.robust.scale.mad.rst │ ├── statsmodels.sandbox.descstats.descstats.rst │ ├── statsmodels.sandbox.descstats.sign_test.rst │ ├── statsmodels.sandbox.distributions.extras.ACSkewT_gen.rst │ ├── statsmodels.sandbox.distributions.extras.NormExpan_gen.rst │ ├── statsmodels.sandbox.distributions.extras.SkewNorm2_gen.rst │ ├── statsmodels.sandbox.distributions.extras.SkewNorm_gen.rst │ ├── statsmodels.sandbox.distributions.extras.mvnormcdf.rst │ ├── statsmodels.sandbox.distributions.extras.mvstdnormcdf.rst │ ├── statsmodels.sandbox.distributions.extras.pdf_moments.rst │ ├── statsmodels.sandbox.distributions.extras.pdf_moments_st.rst │ ├── statsmodels.sandbox.distributions.extras.pdf_mvsk.rst │ ├── statsmodels.sandbox.distributions.extras.skewnorm2.rst │ ├── statsmodels.sandbox.distributions.transformed.ExpTransf_gen.rst │ ├── statsmodels.sandbox.distributions.transformed.LogTransf_gen.rst │ ├── statsmodels.sandbox.distributions.transformed.SquareFunc.rst │ ├── statsmodels.sandbox.distributions.transformed.TransfTwo_gen.rst │ ├── statsmodels.sandbox.distributions.transformed.Transf_gen.rst │ ├── statsmodels.sandbox.distributions.transformed.absnormalg.rst │ ├── statsmodels.sandbox.distributions.transformed.invdnormalg.rst │ ├── statsmodels.sandbox.distributions.transformed.loggammaexpg.rst │ ├── statsmodels.sandbox.distributions.transformed.lognormalg.rst │ ├── statsmodels.sandbox.distributions.transformed.negsquarenormalg.rst │ ├── statsmodels.sandbox.distributions.transformed.squarenormalg.rst │ ├── statsmodels.sandbox.distributions.transformed.squaretg.rst │ ├── statsmodels.sandbox.regression.anova_nistcertified.anova_ols.rst │ ├── statsmodels.sandbox.regression.anova_nistcertified.anova_oneway.rst │ ├── statsmodels.sandbox.regression.gmm.GMM.rst │ ├── statsmodels.sandbox.regression.gmm.GMMResults.rst │ ├── statsmodels.sandbox.regression.gmm.IV2SLS.rst │ ├── statsmodels.sandbox.regression.gmm.IVGMM.rst │ ├── statsmodels.sandbox.regression.gmm.IVGMMResults.rst │ ├── statsmodels.sandbox.regression.gmm.IVRegressionResults.rst │ ├── statsmodels.sandbox.regression.gmm.LinearIVGMM.rst │ ├── statsmodels.sandbox.regression.gmm.NonlinearIVGMM.rst │ ├── statsmodels.sandbox.regression.try_catdata.cat2dummy.rst │ ├── statsmodels.sandbox.regression.try_catdata.convertlabels.rst │ ├── statsmodels.sandbox.regression.try_catdata.groupsstats_1d.rst │ ├── statsmodels.sandbox.regression.try_catdata.groupsstats_dummy.rst │ ├── statsmodels.sandbox.regression.try_catdata.groupstatsbin.rst │ ├── statsmodels.sandbox.regression.try_catdata.labelmeanfilter.rst │ ├── statsmodels.sandbox.regression.try_catdata.labelmeanfilter_nd.rst │ ├── statsmodels.sandbox.regression.try_catdata.labelmeanfilter_str.rst │ ├── statsmodels.sandbox.regression.try_ols_anova.data2dummy.rst │ ├── statsmodels.sandbox.regression.try_ols_anova.data2groupcont.rst │ ├── statsmodels.sandbox.regression.try_ols_anova.data2proddummy.rst │ ├── statsmodels.sandbox.regression.try_ols_anova.dropname.rst │ ├── statsmodels.sandbox.regression.try_ols_anova.form2design.rst │ ├── statsmodels.sandbox.stats.multicomp.GroupsStats.rst │ ├── statsmodels.sandbox.stats.multicomp.MultiComparison.rst │ ├── statsmodels.sandbox.stats.multicomp.StepDown.rst │ ├── statsmodels.sandbox.stats.multicomp.TukeyHSDResults.rst │ ├── statsmodels.sandbox.stats.multicomp.catstack.rst │ ├── statsmodels.sandbox.stats.multicomp.ccols.rst │ ├── statsmodels.sandbox.stats.multicomp.compare_ordered.rst │ ├── statsmodels.sandbox.stats.multicomp.distance_st_range.rst │ ├── statsmodels.sandbox.stats.multicomp.ecdf.rst │ ├── statsmodels.sandbox.stats.multicomp.get_tukeyQcrit.rst │ ├── statsmodels.sandbox.stats.multicomp.homogeneous_subsets.rst │ ├── statsmodels.sandbox.stats.multicomp.maxzero.rst │ ├── statsmodels.sandbox.stats.multicomp.maxzerodown.rst │ ├── statsmodels.sandbox.stats.multicomp.mcfdr.rst │ ├── statsmodels.sandbox.stats.multicomp.qcrit.rst │ ├── statsmodels.sandbox.stats.multicomp.randmvn.rst │ ├── statsmodels.sandbox.stats.multicomp.rankdata.rst │ ├── statsmodels.sandbox.stats.multicomp.rejectionline.rst │ ├── statsmodels.sandbox.stats.multicomp.set_partition.rst │ ├── statsmodels.sandbox.stats.multicomp.set_remove_subs.rst │ ├── statsmodels.sandbox.stats.multicomp.tiecorrect.rst │ ├── statsmodels.sandbox.stats.multicomp.varcorrection_pairs_unbalanced.rst │ ├── statsmodels.sandbox.stats.multicomp.varcorrection_pairs_unequal.rst │ ├── statsmodels.sandbox.stats.multicomp.varcorrection_unbalanced.rst │ ├── statsmodels.sandbox.stats.multicomp.varcorrection_unequal.rst │ ├── statsmodels.sandbox.stats.runs.Runs.rst │ ├── statsmodels.sandbox.stats.runs.cochrans_q.rst │ ├── statsmodels.sandbox.stats.runs.mcnemar.rst │ ├── statsmodels.sandbox.stats.runs.median_test_ksample.rst │ ├── statsmodels.sandbox.stats.runs.runstest_1samp.rst │ ├── statsmodels.sandbox.stats.runs.runstest_2samp.rst │ ├── statsmodels.sandbox.stats.runs.symmetry_bowker.rst │ ├── statsmodels.sandbox.sysreg.SUR.rst │ ├── statsmodels.sandbox.sysreg.Sem2SLS.rst │ ├── statsmodels.sandbox.tsa.fftarma.ArmaFft.rst │ ├── statsmodels.sandbox.tsa.movstat.movmean.rst │ ├── statsmodels.sandbox.tsa.movstat.movmoment.rst │ ├── statsmodels.sandbox.tsa.movstat.movorder.rst │ ├── statsmodels.sandbox.tsa.movstat.movvar.rst │ ├── statsmodels.stats.anova.AnovaRM.rst │ ├── statsmodels.stats.anova.anova_lm.rst │ ├── statsmodels.stats.contingency_tables.SquareTable.rst │ ├── statsmodels.stats.contingency_tables.StratifiedTable.rst │ ├── statsmodels.stats.contingency_tables.Table.rst │ ├── statsmodels.stats.contingency_tables.Table2x2.rst │ ├── statsmodels.stats.contingency_tables.cochrans_q.rst │ ├── statsmodels.stats.contingency_tables.mcnemar.rst │ ├── statsmodels.stats.correlation_tools.FactoredPSDMatrix.rst │ ├── statsmodels.stats.correlation_tools.corr_clipped.rst │ ├── statsmodels.stats.correlation_tools.corr_nearest.rst │ ├── statsmodels.stats.correlation_tools.corr_nearest_factor.rst │ ├── statsmodels.stats.correlation_tools.corr_thresholded.rst │ ├── statsmodels.stats.correlation_tools.cov_nearest.rst │ ├── statsmodels.stats.correlation_tools.cov_nearest_factor_homog.rst │ ├── statsmodels.stats.correlation_tools.kernel_covariance.rst │ ├── statsmodels.stats.descriptivestats.sign_test.rst │ ├── statsmodels.stats.diagnostic.CompareCox.rst │ ├── statsmodels.stats.diagnostic.CompareJ.rst │ ├── statsmodels.stats.diagnostic.HetGoldfeldQuandt.rst │ ├── statsmodels.stats.diagnostic.acorr_breusch_godfrey.rst │ ├── statsmodels.stats.diagnostic.acorr_ljungbox.rst │ ├── statsmodels.stats.diagnostic.breaks_cusumolsresid.rst │ ├── statsmodels.stats.diagnostic.breaks_hansen.rst │ ├── statsmodels.stats.diagnostic.compare_cox.rst │ ├── statsmodels.stats.diagnostic.compare_j.rst │ ├── statsmodels.stats.diagnostic.het_arch.rst │ ├── statsmodels.stats.diagnostic.het_breuschpagan.rst │ ├── statsmodels.stats.diagnostic.het_goldfeldquandt.rst │ ├── statsmodels.stats.diagnostic.het_white.rst │ ├── statsmodels.stats.diagnostic.kstest_normal.rst │ ├── statsmodels.stats.diagnostic.lilliefors.rst │ ├── statsmodels.stats.diagnostic.linear_harvey_collier.rst │ ├── statsmodels.stats.diagnostic.linear_lm.rst │ ├── statsmodels.stats.diagnostic.linear_rainbow.rst │ ├── statsmodels.stats.diagnostic.normal_ad.rst │ ├── statsmodels.stats.diagnostic.recursive_olsresiduals.rst │ ├── statsmodels.stats.diagnostic.unitroot_adf.rst │ ├── statsmodels.stats.gof.chisquare_effectsize.rst │ ├── statsmodels.stats.gof.gof_binning_discrete.rst │ ├── statsmodels.stats.gof.gof_chisquare_discrete.rst │ ├── statsmodels.stats.gof.powerdiscrepancy.rst │ ├── statsmodels.stats.inter_rater.aggregate_raters.rst │ ├── statsmodels.stats.inter_rater.cohens_kappa.rst │ ├── statsmodels.stats.inter_rater.fleiss_kappa.rst │ ├── statsmodels.stats.inter_rater.to_table.rst │ ├── statsmodels.stats.knockoff_regeffects.CorrelationEffects.rst │ ├── statsmodels.stats.knockoff_regeffects.ForwardEffects.rst │ ├── statsmodels.stats.knockoff_regeffects.OLSEffects.rst │ ├── statsmodels.stats.knockoff_regeffects.RegModelEffects.rst │ ├── statsmodels.stats.mediation.Mediation.rst │ ├── statsmodels.stats.mediation.MediationResults.rst │ ├── statsmodels.stats.moment_helpers.corr2cov.rst │ ├── statsmodels.stats.moment_helpers.cov2corr.rst │ ├── statsmodels.stats.moment_helpers.cum2mc.rst │ ├── statsmodels.stats.moment_helpers.mc2mnc.rst │ ├── statsmodels.stats.moment_helpers.mc2mvsk.rst │ ├── statsmodels.stats.moment_helpers.mnc2cum.rst │ ├── statsmodels.stats.moment_helpers.mnc2mc.rst │ ├── statsmodels.stats.moment_helpers.mnc2mvsk.rst │ ├── statsmodels.stats.moment_helpers.mvsk2mc.rst │ ├── statsmodels.stats.moment_helpers.mvsk2mnc.rst │ ├── statsmodels.stats.moment_helpers.se_cov.rst │ ├── statsmodels.stats.multicomp.pairwise_tukeyhsd.rst │ ├── statsmodels.stats.multitest.NullDistribution.rst │ ├── statsmodels.stats.multitest.RegressionFDR.rst │ ├── statsmodels.stats.multitest.fdrcorrection.rst │ ├── statsmodels.stats.multitest.fdrcorrection_twostage.rst │ ├── statsmodels.stats.multitest.local_fdr.rst │ ├── statsmodels.stats.multitest.multipletests.rst │ ├── statsmodels.stats.outliers_influence.GLMInfluence.rst │ ├── statsmodels.stats.outliers_influence.MLEInfluence.rst │ ├── statsmodels.stats.outliers_influence.OLSInfluence.rst │ ├── statsmodels.stats.outliers_influence.variance_inflation_factor.rst │ ├── statsmodels.stats.power.FTestAnovaPower.rst │ ├── statsmodels.stats.power.FTestPower.rst │ ├── statsmodels.stats.power.GofChisquarePower.rst │ ├── statsmodels.stats.power.NormalIndPower.rst │ ├── statsmodels.stats.power.TTestIndPower.rst │ ├── statsmodels.stats.power.TTestPower.rst │ ├── statsmodels.stats.power.tt_ind_solve_power.rst │ ├── statsmodels.stats.power.tt_solve_power.rst │ ├── statsmodels.stats.power.zt_ind_solve_power.rst │ ├── statsmodels.stats.proportion.binom_test.rst │ ├── statsmodels.stats.proportion.binom_test_reject_interval.rst │ ├── statsmodels.stats.proportion.binom_tost.rst │ ├── statsmodels.stats.proportion.binom_tost_reject_interval.rst │ ├── statsmodels.stats.proportion.multinomial_proportions_confint.rst │ ├── statsmodels.stats.proportion.power_binom_tost.rst │ ├── statsmodels.stats.proportion.power_ztost_prop.rst │ ├── statsmodels.stats.proportion.proportion_confint.rst │ ├── statsmodels.stats.proportion.proportion_effectsize.rst │ ├── statsmodels.stats.proportion.proportions_chisquare.rst │ ├── statsmodels.stats.proportion.proportions_chisquare_allpairs.rst │ ├── statsmodels.stats.proportion.proportions_chisquare_pairscontrol.rst │ ├── statsmodels.stats.proportion.proportions_ztest.rst │ ├── statsmodels.stats.proportion.proportions_ztost.rst │ ├── statsmodels.stats.proportion.samplesize_confint_proportion.rst │ ├── statsmodels.stats.sandwich_covariance.cov_cluster.rst │ ├── statsmodels.stats.sandwich_covariance.cov_cluster_2groups.rst │ ├── statsmodels.stats.sandwich_covariance.cov_hac.rst │ ├── statsmodels.stats.sandwich_covariance.cov_hc0.rst │ ├── statsmodels.stats.sandwich_covariance.cov_hc1.rst │ ├── statsmodels.stats.sandwich_covariance.cov_hc2.rst │ ├── statsmodels.stats.sandwich_covariance.cov_hc3.rst │ ├── statsmodels.stats.sandwich_covariance.cov_nw_groupsum.rst │ ├── statsmodels.stats.sandwich_covariance.cov_nw_panel.rst │ ├── statsmodels.stats.sandwich_covariance.cov_white_simple.rst │ ├── statsmodels.stats.sandwich_covariance.se_cov.rst │ ├── statsmodels.stats.stattools.durbin_watson.rst │ ├── statsmodels.stats.stattools.expected_robust_kurtosis.rst │ ├── statsmodels.stats.stattools.jarque_bera.rst │ ├── statsmodels.stats.stattools.medcouple.rst │ ├── statsmodels.stats.stattools.omni_normtest.rst │ ├── statsmodels.stats.stattools.robust_kurtosis.rst │ ├── statsmodels.stats.stattools.robust_skewness.rst │ ├── statsmodels.stats.weightstats.CompareMeans.rst │ ├── statsmodels.stats.weightstats.DescrStatsW.rst │ ├── statsmodels.stats.weightstats._tconfint_generic.rst │ ├── statsmodels.stats.weightstats._tstat_generic.rst │ ├── statsmodels.stats.weightstats._zconfint_generic.rst │ ├── statsmodels.stats.weightstats._zstat_generic.rst │ ├── statsmodels.stats.weightstats._zstat_generic2.rst │ ├── statsmodels.stats.weightstats.ttest_ind.rst │ ├── statsmodels.stats.weightstats.ttost_ind.rst │ ├── statsmodels.stats.weightstats.ttost_paired.rst │ ├── statsmodels.stats.weightstats.zconfint.rst │ ├── statsmodels.stats.weightstats.ztest.rst │ ├── statsmodels.stats.weightstats.ztost.rst │ ├── statsmodels.tools.eval_measures.aic.rst │ ├── statsmodels.tools.eval_measures.aic_sigma.rst │ ├── statsmodels.tools.eval_measures.aicc.rst │ ├── statsmodels.tools.eval_measures.aicc_sigma.rst │ ├── statsmodels.tools.eval_measures.bias.rst │ ├── statsmodels.tools.eval_measures.bic.rst │ ├── statsmodels.tools.eval_measures.bic_sigma.rst │ ├── statsmodels.tools.eval_measures.hqic.rst │ ├── statsmodels.tools.eval_measures.hqic_sigma.rst │ ├── statsmodels.tools.eval_measures.iqr.rst │ ├── statsmodels.tools.eval_measures.maxabs.rst │ ├── statsmodels.tools.eval_measures.meanabs.rst │ ├── statsmodels.tools.eval_measures.medianabs.rst │ ├── statsmodels.tools.eval_measures.medianbias.rst │ ├── statsmodels.tools.eval_measures.mse.rst │ ├── statsmodels.tools.eval_measures.rmse.rst │ ├── statsmodels.tools.eval_measures.stde.rst │ ├── statsmodels.tools.eval_measures.vare.rst │ ├── statsmodels.tools.numdiff.approx_fprime.rst │ ├── statsmodels.tools.numdiff.approx_fprime_cs.rst │ ├── statsmodels.tools.numdiff.approx_hess1.rst │ ├── statsmodels.tools.numdiff.approx_hess2.rst │ ├── statsmodels.tools.numdiff.approx_hess3.rst │ ├── statsmodels.tools.numdiff.approx_hess_cs.rst │ ├── statsmodels.tools.print_version.show_versions.rst │ ├── statsmodels.tools.tools.add_constant.rst │ ├── statsmodels.tools.tools.categorical.rst │ ├── statsmodels.tools.tools.clean0.rst │ ├── statsmodels.tools.tools.fullrank.rst │ ├── statsmodels.tools.tools.isestimable.rst │ ├── statsmodels.tools.tools.recipr.rst │ ├── statsmodels.tools.tools.recipr0.rst │ ├── statsmodels.tools.tools.unsqueeze.rst │ ├── statsmodels.tools.web.webdoc.rst │ ├── statsmodels.tsa.ar_model.AR.rst │ ├── statsmodels.tsa.ar_model.ARResults.rst │ ├── statsmodels.tsa.arima_model.ARIMA.rst │ ├── statsmodels.tsa.arima_model.ARIMAResults.rst │ ├── statsmodels.tsa.arima_model.ARMA.rst │ ├── statsmodels.tsa.arima_model.ARMAResults.rst │ ├── statsmodels.tsa.arima_process.ArmaProcess.rst │ ├── statsmodels.tsa.arima_process.ar2arma.rst │ ├── statsmodels.tsa.arima_process.arma2ar.rst │ ├── statsmodels.tsa.arima_process.arma2ma.rst │ ├── statsmodels.tsa.arima_process.arma_acf.rst │ ├── statsmodels.tsa.arima_process.arma_acovf.rst │ ├── statsmodels.tsa.arima_process.arma_generate_sample.rst │ ├── statsmodels.tsa.arima_process.arma_impulse_response.rst │ ├── statsmodels.tsa.arima_process.arma_pacf.rst │ ├── statsmodels.tsa.arima_process.arma_periodogram.rst │ ├── statsmodels.tsa.arima_process.deconvolve.rst │ ├── statsmodels.tsa.arima_process.index2lpol.rst │ ├── statsmodels.tsa.arima_process.lpol2index.rst │ ├── statsmodels.tsa.arima_process.lpol_fiar.rst │ ├── statsmodels.tsa.arima_process.lpol_fima.rst │ ├── statsmodels.tsa.arima_process.lpol_sdiff.rst │ ├── statsmodels.tsa.filters.bk_filter.bkfilter.rst │ ├── statsmodels.tsa.filters.cf_filter.cffilter.rst │ ├── statsmodels.tsa.filters.filtertools.convolution_filter.rst │ ├── statsmodels.tsa.filters.filtertools.fftconvolve3.rst │ ├── statsmodels.tsa.filters.filtertools.fftconvolveinv.rst │ ├── statsmodels.tsa.filters.filtertools.miso_lfilter.rst │ ├── statsmodels.tsa.filters.filtertools.recursive_filter.rst │ ├── statsmodels.tsa.filters.hp_filter.hpfilter.rst │ ├── statsmodels.tsa.holtwinters.ExponentialSmoothing.rst │ ├── statsmodels.tsa.holtwinters.Holt.rst │ ├── statsmodels.tsa.holtwinters.HoltWintersResults.rst │ ├── statsmodels.tsa.holtwinters.SimpleExpSmoothing.rst │ ├── statsmodels.tsa.interp.denton.dentonm.rst │ ├── statsmodels.tsa.regime_switching.markov_autoregression.MarkovAutoregression.rst │ ├── statsmodels.tsa.regime_switching.markov_regression.MarkovRegression.rst │ ├── statsmodels.tsa.seasonal.DecomposeResult.rst │ ├── statsmodels.tsa.seasonal.seasonal_decompose.rst │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactor.rst │ ├── statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.rst │ ├── statsmodels.tsa.statespace.kalman_filter.FilterResults.rst │ ├── statsmodels.tsa.statespace.kalman_filter.KalmanFilter.rst │ ├── statsmodels.tsa.statespace.kalman_filter.PredictionResults.rst │ ├── statsmodels.tsa.statespace.kalman_smoother.KalmanSmoother.rst │ ├── statsmodels.tsa.statespace.kalman_smoother.SmootherResults.rst │ ├── statsmodels.tsa.statespace.mlemodel.MLEModel.rst │ ├── statsmodels.tsa.statespace.mlemodel.MLEResults.rst │ ├── statsmodels.tsa.statespace.representation.FrozenRepresentation.rst │ ├── statsmodels.tsa.statespace.representation.Representation.rst │ ├── statsmodels.tsa.statespace.sarimax.SARIMAX.rst │ ├── statsmodels.tsa.statespace.sarimax.SARIMAXResults.rst │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoothResults.rst │ ├── statsmodels.tsa.statespace.simulation_smoother.SimulationSmoother.rst │ ├── statsmodels.tsa.statespace.structural.UnobservedComponents.rst │ ├── statsmodels.tsa.statespace.structural.UnobservedComponentsResults.rst │ ├── statsmodels.tsa.statespace.tools.companion_matrix.rst │ ├── statsmodels.tsa.statespace.tools.constrain_stationary_multivariate.rst │ ├── statsmodels.tsa.statespace.tools.constrain_stationary_univariate.rst │ ├── statsmodels.tsa.statespace.tools.diff.rst │ ├── statsmodels.tsa.statespace.tools.is_invertible.rst │ ├── statsmodels.tsa.statespace.tools.unconstrain_stationary_multivariate.rst │ ├── statsmodels.tsa.statespace.tools.unconstrain_stationary_univariate.rst │ ├── statsmodels.tsa.statespace.tools.validate_matrix_shape.rst │ ├── statsmodels.tsa.statespace.tools.validate_vector_shape.rst │ ├── statsmodels.tsa.statespace.varmax.VARMAX.rst │ ├── statsmodels.tsa.statespace.varmax.VARMAXResults.rst │ ├── statsmodels.tsa.stattools.acf.rst │ ├── statsmodels.tsa.stattools.acovf.rst │ ├── statsmodels.tsa.stattools.adfuller.rst │ ├── statsmodels.tsa.stattools.arma_order_select_ic.rst │ ├── statsmodels.tsa.stattools.bds.rst │ ├── statsmodels.tsa.stattools.ccf.rst │ ├── statsmodels.tsa.stattools.ccovf.rst │ ├── statsmodels.tsa.stattools.coint.rst │ ├── statsmodels.tsa.stattools.grangercausalitytests.rst │ ├── statsmodels.tsa.stattools.innovations_algo.rst │ ├── statsmodels.tsa.stattools.innovations_filter.rst │ ├── statsmodels.tsa.stattools.kpss.rst │ ├── statsmodels.tsa.stattools.levinson_durbin.rst │ ├── statsmodels.tsa.stattools.levinson_durbin_pacf.rst │ ├── statsmodels.tsa.stattools.pacf.rst │ ├── statsmodels.tsa.stattools.pacf_burg.rst │ ├── statsmodels.tsa.stattools.pacf_ols.rst │ ├── statsmodels.tsa.stattools.pacf_yw.rst │ ├── statsmodels.tsa.stattools.periodogram.rst │ ├── statsmodels.tsa.stattools.q_stat.rst │ ├── statsmodels.tsa.tsatools.add_lag.rst │ ├── statsmodels.tsa.tsatools.add_trend.rst │ ├── statsmodels.tsa.tsatools.detrend.rst │ ├── statsmodels.tsa.tsatools.lagmat.rst │ ├── statsmodels.tsa.tsatools.lagmat2ds.rst │ ├── statsmodels.tsa.varma_process.VarmaPoly.rst │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.CausalityTestResults.rst │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.HypothesisTestResults.rst │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.NormalityTestResults.rst │ ├── statsmodels.tsa.vector_ar.hypothesis_test_results.WhitenessTestResults.rst │ ├── statsmodels.tsa.vector_ar.irf.IRAnalysis.rst │ ├── statsmodels.tsa.vector_ar.svar_model.SVAR.rst │ ├── statsmodels.tsa.vector_ar.svar_model.SVARProcess.rst │ ├── statsmodels.tsa.vector_ar.svar_model.SVARResults.rst │ ├── statsmodels.tsa.vector_ar.var_model.FEVD.rst │ ├── statsmodels.tsa.vector_ar.var_model.LagOrderResults.rst │ ├── statsmodels.tsa.vector_ar.var_model.VAR.rst │ ├── statsmodels.tsa.vector_ar.var_model.VARProcess.rst │ ├── statsmodels.tsa.vector_ar.var_model.VARResults.rst │ ├── statsmodels.tsa.vector_ar.vecm.CointRankResults.rst │ ├── statsmodels.tsa.vector_ar.vecm.VECM.rst │ ├── statsmodels.tsa.vector_ar.vecm.VECMResults.rst │ ├── statsmodels.tsa.vector_ar.vecm.coint_johansen.rst │ ├── statsmodels.tsa.vector_ar.vecm.select_coint_rank.rst │ ├── statsmodels.tsa.vector_ar.vecm.select_order.rst │ ├── statsmodels.tsa.x13.x13_arima_analysis.rst │ └── statsmodels.tsa.x13.x13_arima_select_order.rst │ ├── gettingstarted.rst │ ├── glm.rst │ ├── glm_techn1.rst.TXT │ ├── glm_techn2.rst.TXT │ ├── gmm.rst │ ├── gmm_techn1.rst.TXT │ ├── graphics.rst │ ├── images │ ├── aw.png │ ├── favicon.ico │ ├── hl.png │ ├── ht.png │ ├── ls.png │ ├── re.png │ ├── statsmodels-favicon-base.svg │ ├── statsmodels-logo-v2-bw.svg │ ├── statsmodels-logo-v2-dark.svg │ ├── statsmodels-logo-v2-horizontal-dark.svg │ ├── statsmodels-logo-v2-horizontal-light.svg │ ├── statsmodels-logo-v2-horizontal.svg │ ├── statsmodels-logo-v2-light.svg │ ├── statsmodels-logo-v2-no-text-dark.svg │ ├── statsmodels-logo-v2-no-text-light.svg │ ├── statsmodels-logo-v2-no-text.svg │ ├── statsmodels-logo-v2.svg │ ├── statsmodels_hybi_banner.png │ ├── statsmodels_hybi_banner.svg │ ├── statsmodels_hybi_banner_v2.png │ ├── statsmodels_hybi_favico.ico │ ├── tk.png │ └── tm.png │ ├── imputation.rst │ ├── index.rst │ ├── install.rst │ ├── iolib.rst │ ├── large_data.rst │ ├── miscmodels.rst │ ├── missing.rst │ ├── mixed_glm.rst │ ├── mixed_linear.rst │ ├── multivariate.rst │ ├── names_wordlist.txt │ ├── nonparametric.rst │ ├── optimization.rst │ ├── pitfalls.rst │ ├── plots │ ├── arma_predict_plot.py │ ├── bkf_plot.py │ ├── cff_plot.py │ ├── graphics-mean_diff_plot.py │ ├── graphics_boxplot_beanplot.py │ ├── graphics_boxplot_violinplot.py │ ├── graphics_correlation_plot_corr.py │ ├── graphics_correlation_plot_corr_grid.py │ ├── graphics_functional_fboxplot.py │ ├── graphics_functional_hdrboxplot.py │ ├── graphics_functional_rainbowplot.py │ ├── graphics_gofplots_qqplot.py │ ├── graphics_gofplots_qqplot_2samples.py │ ├── graphics_gofplots_qqplot_qqline.py │ ├── graphics_mosaicplot_mosaic.py │ ├── graphics_plot_fit_ex.py │ ├── graphics_plot_grids_scatter_ellipse.py │ ├── graphics_regression_abline.py │ ├── graphics_regression_ccpr.py │ ├── graphics_regression_ccpr_grid.py │ ├── graphics_regression_ceres_residuals.py │ ├── graphics_regression_influence.py │ ├── graphics_regression_leverage_resid2.py │ ├── graphics_regression_partregress.py │ ├── graphics_regression_partregress_grid.py │ ├── graphics_regression_regress_exog.py │ ├── graphics_tsa_month_plot.py │ ├── graphics_tsa_plot_acf.py │ ├── graphics_tsa_plot_pacf.py │ ├── graphics_tsa_quarter_plot.py │ ├── hpf_plot.py │ ├── load_macrodata.py │ ├── mice_example_1.txt │ ├── stl_plot.py │ ├── var_plot_acorr.py │ ├── var_plot_fevd.py │ ├── var_plot_forecast.py │ ├── var_plot_input.py │ ├── var_plot_irf.py │ ├── var_plot_irf_cum.py │ └── var_plots.py │ ├── regression.rst │ ├── regression_techn1.rst.TXT │ ├── release │ ├── index.rst │ ├── old_changes.rst │ ├── version0.10.1.rst │ ├── version0.10.2.rst │ ├── version0.10.rst │ ├── version0.11.rst │ ├── version0.5.rst │ ├── version0.6.rst │ ├── version0.7.rst │ ├── version0.8.rst │ └── version0.9.rst │ ├── rlm.rst │ ├── rlm_techn1.rst │ ├── sandbox.rst │ ├── spelling_wordlist.txt │ ├── statespace.rst │ ├── stats.rst │ ├── tools.rst │ ├── tsa.rst │ ├── tsastats.rst.TXT │ ├── user-guide.rst │ └── vector_ar.rst ├── examples ├── incomplete │ ├── arima.py │ ├── arma2.py │ ├── dates.py │ ├── glsar.py │ ├── ols_table.py │ ├── ols_tftest.py │ └── wls_extended.py ├── notebooks │ ├── autoregressions.ipynb │ ├── categorical_interaction_plot.ipynb │ ├── chi2_fitting.ipynb │ ├── contrasts.ipynb │ ├── discrete_choice_example.ipynb │ ├── discrete_choice_overview.ipynb │ ├── distributed_estimation.ipynb │ ├── exponential_smoothing.ipynb │ ├── formulas.ipynb │ ├── gee_nested_simulation.ipynb │ ├── gee_score_test_simulation.ipynb │ ├── generic_mle.ipynb │ ├── glm.ipynb │ ├── glm_formula.ipynb │ ├── glm_weights.ipynb │ ├── gls.ipynb │ ├── influence_glm_logit.ipynb │ ├── interactions_anova.ipynb │ ├── kernel_density.ipynb │ ├── markov_autoregression.ipynb │ ├── markov_regression.ipynb │ ├── mixed_lm_example.ipynb │ ├── ols.ipynb │ ├── pca_fertility_factors.ipynb │ ├── plots_boxplots.ipynb │ ├── predict.ipynb │ ├── quantile_regression.ipynb │ ├── recursive_ls.ipynb │ ├── regression_diagnostics.ipynb │ ├── regression_plots.ipynb │ ├── robust_models_0.ipynb │ ├── robust_models_1.ipynb │ ├── rolling_ls.ipynb │ ├── star_diagram.png │ ├── statespace_arma_0.ipynb │ ├── statespace_concentrated_scale.ipynb │ ├── statespace_cycles.ipynb │ ├── statespace_dfm_coincident.ipynb │ ├── statespace_fixed_params.ipynb │ ├── statespace_forecasting.ipynb │ ├── statespace_local_linear_trend.ipynb │ ├── statespace_sarimax_internet.ipynb │ ├── statespace_sarimax_stata.ipynb │ ├── statespace_seasonal.ipynb │ ├── statespace_structural_harvey_jaeger.ipynb │ ├── statespace_varmax.ipynb │ ├── stl_decomposition.ipynb │ ├── tsa_arma_0.ipynb │ ├── tsa_arma_1.ipynb │ ├── tsa_dates.ipynb │ ├── tsa_filters.ipynb │ └── wls.ipynb ├── python │ ├── categorical_interaction_plot.py │ ├── chi2_fitting.py │ ├── contrasts.py │ ├── discrete_choice_example.py │ ├── discrete_choice_overview.py │ ├── distributed_estimation.py │ ├── exponential_smoothing.py │ ├── formulas.py │ ├── generic_mle.py │ ├── glm.py │ ├── glm_formula.py │ ├── glm_weights.py │ ├── gls.py │ ├── influence_glm_logit.py │ ├── interactions_anova.py │ ├── kernel_density.py │ ├── markov_autoregression.py │ ├── markov_regression.py │ ├── mixed_lm_example.py │ ├── ols.py │ ├── pca_fertility_factors.py │ ├── plots_boxplots.py │ ├── predict.py │ ├── quantile_regression.py │ ├── recursive_ls.py │ ├── regression_diagnostics.py │ ├── regression_plots.py │ ├── robust_models_0.py │ ├── robust_models_1.py │ ├── statespace_arma_0.py │ ├── statespace_concentrated_scale.py │ ├── statespace_cycles.py │ ├── statespace_dfm_coincident.py │ ├── statespace_local_linear_trend.py │ ├── statespace_sarimax_internet.py │ ├── statespace_sarimax_stata.py │ ├── statespace_seasonal.py │ ├── statespace_structural_harvey_jaeger.py │ ├── statespace_varmax.py │ ├── tsa_arma_0.py │ ├── tsa_arma_1.py │ ├── tsa_dates.py │ ├── tsa_filters.py │ └── wls.py └── run_all.py ├── github_deploy_key_statsmodels_statsmodels_github_io.enc ├── lint.sh ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── statsmodels ├── __init__.py ├── _version.py ├── api.py ├── base │ ├── __init__.py │ ├── _constraints.py │ ├── _parameter_inference.py │ ├── _penalized.py │ ├── _penalties.py │ ├── _screening.py │ ├── covtype.py │ ├── data.py │ ├── distributed_estimation.py │ ├── elastic_net.py │ ├── l1_cvxopt.py │ ├── l1_slsqp.py │ ├── l1_solvers_common.py │ ├── model.py │ ├── optimizer.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_data.py │ │ ├── test_distributed_estimation.py │ │ ├── test_generic_methods.py │ │ ├── test_optimize.py │ │ ├── test_penalized.py │ │ ├── test_penalties.py │ │ ├── test_predict.py │ │ ├── test_screening.py │ │ ├── test_shrink_pickle.py │ │ └── test_transform.py │ ├── transform.py │ └── wrapper.py ├── compat │ ├── __init__.py │ ├── numpy.py │ ├── pandas.py │ ├── platform.py │ ├── python.py │ ├── scipy.py │ └── tests │ │ ├── __init__.py │ │ ├── test_itercompat.py │ │ └── test_scipy_compat.py ├── conftest.py ├── datasets │ ├── __init__.py │ ├── anes96 │ │ ├── __init__.py │ │ ├── anes96.csv │ │ ├── data.py │ │ └── src │ │ │ └── anes96.csv │ ├── cancer │ │ ├── __init__.py │ │ ├── cancer.csv │ │ └── data.py │ ├── ccard │ │ ├── R_wls.s │ │ ├── __init__.py │ │ ├── ccard.csv │ │ ├── data.py │ │ └── src │ │ │ ├── ccard.csv │ │ │ └── names.txt │ ├── china_smoking │ │ ├── __init__.py │ │ ├── china_smoking.csv │ │ └── data.py │ ├── co2 │ │ ├── __init__.py │ │ ├── co2.csv │ │ ├── data.py │ │ └── src │ │ │ └── maunaloa_c.dat │ ├── committee │ │ ├── R_committee.s │ │ ├── __init__.py │ │ ├── committee.csv │ │ ├── data.py │ │ └── src │ │ │ └── committee.dat │ ├── copper │ │ ├── __init__.py │ │ ├── copper.csv │ │ ├── data.py │ │ └── src │ │ │ └── copper.dat │ ├── cpunish │ │ ├── R_cpunish.s │ │ ├── __init__.py │ │ ├── cpunish.csv │ │ ├── data.py │ │ └── src │ │ │ └── cpunish.dat │ ├── elec_equip │ │ ├── __init__.py │ │ ├── data.py │ │ └── elec_equip.csv │ ├── elnino │ │ ├── __init__.py │ │ ├── data.py │ │ ├── elnino.csv │ │ └── src │ │ │ └── elnino.dat │ ├── engel │ │ ├── __init__.py │ │ ├── data.py │ │ └── engel.csv │ ├── fair │ │ ├── __init__.py │ │ ├── data.py │ │ ├── fair.csv │ │ ├── fair_pt.csv │ │ └── src │ │ │ └── 1978ADAT.asc │ ├── fertility │ │ ├── __init__.py │ │ ├── data.py │ │ └── fertility.csv │ ├── grunfeld │ │ ├── __init__.py │ │ ├── data.py │ │ ├── grunfeld.csv │ │ └── src │ │ │ └── grunfeld.csv │ ├── heart │ │ ├── __init__.py │ │ ├── data.py │ │ └── heart.csv │ ├── interest_inflation │ │ ├── E6.csv │ │ ├── E6_jmulti.csv │ │ ├── __init__.py │ │ └── data.py │ ├── longley │ │ ├── R_gls.s │ │ ├── R_lm.s │ │ ├── __init__.py │ │ ├── data.py │ │ └── longley.csv │ ├── macrodata │ │ ├── __init__.py │ │ ├── data.py │ │ ├── macrodata.csv │ │ ├── macrodata.dta │ │ └── src │ │ │ ├── macrodata.xls │ │ │ └── macrodata.xls │ │ │ └── unemp.csv │ ├── modechoice │ │ ├── __init__.py │ │ ├── data.py │ │ ├── modechoice.csv │ │ └── src │ │ │ └── TableF18-2.csv │ ├── nile │ │ ├── __init__.py │ │ ├── data.py │ │ └── nile.csv │ ├── randhie │ │ ├── __init__.py │ │ ├── data.py │ │ ├── randhie.csv │ │ └── src │ │ │ ├── randdesc.txt │ │ │ └── randhie.csv │ ├── scotland │ │ ├── R_scotvote.s │ │ ├── __init__.py │ │ ├── data.py │ │ ├── scotvote.csv │ │ └── src │ │ │ ├── scotland.readme │ │ │ ├── scotland_births.html │ │ │ ├── scotland_changes.html │ │ │ ├── scotland_devolution.html │ │ │ ├── scotland_econ_summary.html │ │ │ ├── scotland_economics.html │ │ │ ├── scotland_education.html │ │ │ ├── scotland_housing.html │ │ │ ├── scotland_population.csv │ │ │ ├── scotland_population.html │ │ │ ├── scotvote.csv │ │ │ └── scotvote.dat │ ├── spector │ │ ├── __init__.py │ │ ├── data.py │ │ └── spector.csv │ ├── stackloss │ │ ├── R_stackloss.s │ │ ├── __init__.py │ │ ├── data.py │ │ └── stackloss.csv │ ├── star98 │ │ ├── __init__.py │ │ ├── data.py │ │ ├── r_glm.s │ │ ├── src │ │ │ ├── star.bi.dat │ │ │ ├── star98.dat │ │ │ └── star98.names │ │ └── star98.csv │ ├── statecrime │ │ ├── __init__.py │ │ ├── data.py │ │ └── statecrime.csv │ ├── strikes │ │ ├── __init__.py │ │ ├── data.py │ │ └── strikes.csv │ ├── sunspots │ │ ├── R_sunspots.s │ │ ├── __init__.py │ │ ├── arima_mod.R │ │ ├── data.py │ │ ├── src │ │ │ ├── sunspots_monthly.dat │ │ │ └── sunspots_yearly.dat │ │ └── sunspots.csv │ ├── template_data.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_data.py │ │ └── test_utils.py │ └── utils.py ├── discrete │ ├── __init__.py │ ├── _diagnostics_count.py │ ├── conditional_models.py │ ├── count_model.py │ ├── discrete_margins.py │ ├── discrete_model.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── mn_logit_summary.txt │ │ ├── mnlogit_resid.csv │ │ ├── nbinom_resids.csv │ │ ├── phat_mnlogit.csv │ │ ├── poisson_resid.csv │ │ ├── predict_prob_poisson.csv │ │ ├── results_count_margins.py │ │ ├── results_count_robust_cluster.py │ │ ├── results_discrete.py │ │ ├── results_glm_logit_constrained.py │ │ ├── results_poisson_constrained.py │ │ ├── ships.csv │ │ ├── sm3533.csv │ │ ├── yhat_mnlogit.csv │ │ └── yhat_poisson.csv │ │ ├── test_conditional.py │ │ ├── test_constrained.py │ │ ├── test_count_model.py │ │ ├── test_diagnostic.py │ │ ├── test_discrete.py │ │ ├── test_margins.py │ │ └── test_sandwich_cov.py ├── distributions │ ├── __init__.py │ ├── discrete.py │ ├── edgeworth.py │ ├── empirical_distribution.py │ ├── mixture_rvs.py │ └── tests │ │ ├── __init__.py │ │ ├── test_discrete.py │ │ ├── test_ecdf.py │ │ ├── test_edgeworth.py │ │ └── test_mixture.py ├── duration │ ├── __init__.py │ ├── _kernel_estimates.py │ ├── api.py │ ├── hazard_regression.py │ ├── survfunc.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── bmt.csv │ │ ├── bmt_results.csv │ │ ├── km_cox1.do │ │ ├── phreg_gentests.py │ │ ├── survival.R │ │ ├── survival_data_1000_10.csv │ │ ├── survival_data_100_5.csv │ │ ├── survival_data_20_1.csv │ │ ├── survival_data_50_1.csv │ │ ├── survival_data_50_2.csv │ │ ├── survival_enet_r_results.py │ │ ├── survival_r_results.py │ │ └── survival_regularized.R │ │ ├── test_phreg.py │ │ └── test_survfunc.py ├── emplike │ ├── __init__.py │ ├── aft_el.py │ ├── api.py │ ├── descriptive.py │ ├── elanova.py │ ├── elregress.py │ ├── originregress.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ └── el_results.py │ │ ├── test_aft.py │ │ ├── test_anova.py │ │ ├── test_descriptive.py │ │ ├── test_origin.py │ │ └── test_regression.py ├── examples │ ├── es_misc_poisson2.py │ ├── ex_arch_canada.py │ ├── ex_emplike_1.py │ ├── ex_emplike_2.py │ ├── ex_emplike_3.py │ ├── ex_feasible_gls_het.py │ ├── ex_feasible_gls_het_0.py │ ├── ex_generic_mle.py │ ├── ex_generic_mle_t.py │ ├── ex_generic_mle_tdist.py │ ├── ex_grangercausality.py │ ├── ex_inter_rater.py │ ├── ex_kde_confint.py │ ├── ex_kde_normalreference.py │ ├── ex_kernel_regression.py │ ├── ex_kernel_regression2.py │ ├── ex_kernel_regression3.py │ ├── ex_kernel_regression_censored2.py │ ├── ex_kernel_regression_dgp.py │ ├── ex_kernel_regression_sigtest.py │ ├── ex_kernel_semilinear_dgp.py │ ├── ex_kernel_singleindex_dgp.py │ ├── ex_kernel_test_functional.py │ ├── ex_kernel_test_functional_li_wang.py │ ├── ex_lowess.py │ ├── ex_misc_tarma.py │ ├── ex_misc_tmodel.py │ ├── ex_multivar_kde.py │ ├── ex_nearest_corr.py │ ├── ex_ols_robustcov.py │ ├── ex_outliers_influence.py │ ├── ex_pandas.py │ ├── ex_pareto_plot.py │ ├── ex_predict_results.py │ ├── ex_proportion.py │ ├── ex_regressionplots.py │ ├── ex_rootfinding.py │ ├── ex_sandwich.py │ ├── ex_sandwich2.py │ ├── ex_sandwich3.py │ ├── ex_scatter_ellipse.py │ ├── ex_univar_kde.py │ ├── ex_wald_anova.py │ ├── example_discrete_mnl.py │ ├── example_enhanced_boxplots.py │ ├── example_functional_plots.py │ ├── example_kde.py │ ├── example_ols_minimal_comp.py │ ├── example_rpy.py │ ├── koul_and_mc.py │ ├── l1_demo │ │ ├── demo.py │ │ ├── short_demo.py │ │ └── sklearn_compare.py │ ├── run_all.py │ ├── tests │ │ ├── __init__.py │ │ └── test_notebooks.py │ ├── try_2regress.py │ ├── try_fit_constrained.py │ ├── try_gee.py │ ├── try_gof_chisquare.py │ ├── try_polytrend.py │ ├── try_power.py │ ├── try_power2.py │ ├── try_tukey_hsd.py │ ├── tsa │ │ ├── ar1cholesky.py │ │ ├── arma_plots.py │ │ ├── compare_arma.py │ │ ├── ex_arma_all.py │ │ ├── ex_coint.py │ │ ├── ex_var.py │ │ ├── ex_var_reorder.py │ │ ├── lagpolynomial.py │ │ └── try_ar.py │ ├── tut_ols_ancova.py │ └── tut_ols_rlm_short.py ├── formula │ ├── __init__.py │ ├── api.py │ ├── formulatools.py │ └── tests │ │ ├── __init__.py │ │ └── test_formula.py ├── gam │ ├── __init__.py │ ├── api.py │ ├── gam_cross_validation │ │ ├── __init__.py │ │ ├── cross_validators.py │ │ └── gam_cross_validation.py │ ├── gam_penalties.py │ ├── generalized_additive_model.py │ ├── smooth_basis.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── autos.csv │ │ ├── autos_exog.csv │ │ ├── autos_predict.csv │ │ ├── cubic_cyclic_splines_from_mgcv.csv │ │ ├── gam_PIRLS_results.csv │ │ ├── logit_gam_mgcv.csv │ │ ├── motorcycle.csv │ │ ├── prediction_from_mgcv.csv │ │ ├── results_mpg_bs.py │ │ ├── results_mpg_bs_poisson.py │ │ ├── results_mpg_bs_poisson.r │ │ └── results_pls.py │ │ ├── test_gam.py │ │ ├── test_penalized.py │ │ └── test_smooth_basis.py ├── genmod │ ├── __init__.py │ ├── _prediction.py │ ├── _tweedie_compound_poisson.py │ ├── api.py │ ├── bayes_mixed_glm.py │ ├── cov_struct.py │ ├── families │ │ ├── __init__.py │ │ ├── family.py │ │ ├── links.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_link.py │ │ └── varfuncs.py │ ├── generalized_estimating_equations.py │ ├── generalized_linear_model.py │ ├── qif.py │ └── tests │ │ ├── __init__.py │ │ ├── gee_categorical_simulation_check.py │ │ ├── gee_categorical_simulation_check.txt │ │ ├── gee_gaussian_simulation_check.py │ │ ├── gee_gaussian_simulation_check.txt │ │ ├── gee_poisson_simulation_check.py │ │ ├── gee_poisson_simulation_check.txt │ │ ├── gee_simulation_check.py │ │ ├── results │ │ ├── __init__.py │ │ ├── elastic_net.R │ │ ├── elastic_net_generate_tests.py │ │ ├── enet_binomial.csv │ │ ├── enet_poisson.csv │ │ ├── epil.csv │ │ ├── gee_generate_tests.py │ │ ├── gee_linear_1.csv │ │ ├── gee_logistic_1.csv │ │ ├── gee_nested_linear_1.csv │ │ ├── gee_nominal_1.csv │ │ ├── gee_ordinal_1.csv │ │ ├── gee_poisson_1.csv │ │ ├── glm_test_resids.py │ │ ├── glmnet_r_results.py │ │ ├── igaussident_resids.csv │ │ ├── inv_gaussian.csv │ │ ├── iris.csv │ │ ├── medparlogresids.csv │ │ ├── poisson_weights_v2.do │ │ ├── res_R_var_weight.py │ │ ├── results_glm.py │ │ ├── results_glm_poisson_weights.py │ │ ├── results_tweedie_aweights_nonrobust.csv │ │ ├── stata_cancer_glm.csv │ │ ├── stata_lbw_glm.csv │ │ ├── stata_medpar1_glm.csv │ │ └── test_get_R_tweedie_var_weight.R │ │ ├── test_bayes_mixed_glm.py │ │ ├── test_constrained.py │ │ ├── test_gee.py │ │ ├── test_gee_glm.py │ │ ├── test_glm.py │ │ ├── test_glm_weights.py │ │ ├── test_qif.py │ │ └── test_score_test.py ├── graphics │ ├── __init__.py │ ├── _regressionplots_doc.py │ ├── agreement.py │ ├── api.py │ ├── boxplots.py │ ├── correlation.py │ ├── dotplots.py │ ├── factorplots.py │ ├── functional.py │ ├── gofplots.py │ ├── mosaicplot.py │ ├── plot_grids.py │ ├── plottools.py │ ├── regressionplots.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_agreement.py │ │ ├── test_boxplots.py │ │ ├── test_correlation.py │ │ ├── test_dotplot.py │ │ ├── test_factorplots.py │ │ ├── test_functional.py │ │ ├── test_gofplots.py │ │ ├── test_mosaicplot.py │ │ ├── test_regressionplots.py │ │ └── test_tsaplots.py │ ├── tsaplots.py │ ├── tukeyplot.py │ └── utils.py ├── imputation │ ├── __init__.py │ ├── bayes_mi.py │ ├── mice.py │ ├── ros.py │ └── tests │ │ ├── __init__.py │ │ ├── test_bayes_mi.py │ │ ├── test_mice.py │ │ └── test_ros.py ├── interface │ └── __init__.py ├── iolib │ ├── __init__.py │ ├── api.py │ ├── foreign.py │ ├── openfile.py │ ├── smpickle.py │ ├── stata_summary_examples.py │ ├── summary.py │ ├── summary2.py │ ├── table.py │ ├── tableformatting.py │ └── tests │ │ ├── __init__.py │ │ ├── gen_dates.do │ │ ├── results │ │ ├── __init__.py │ │ ├── data_missing.dta │ │ ├── macrodata.py │ │ └── time_series_examples.dta │ │ ├── stata_dates.csv │ │ ├── test_data.csv │ │ ├── test_foreign.py │ │ ├── test_pickle.py │ │ ├── test_summary.py │ │ ├── test_summary2.py │ │ ├── test_summary_old.py │ │ ├── test_table.py │ │ └── test_table_econpy.py ├── miscmodels │ ├── __init__.py │ ├── api.py │ ├── count.py │ ├── nonlinls.py │ ├── tests │ │ ├── __init__.py │ │ ├── results_tmodel.py │ │ ├── test_generic_mle.py │ │ ├── test_poisson.py │ │ ├── test_tarma.py │ │ └── test_tmodel.py │ ├── tmodel.py │ └── try_mlecov.py ├── multivariate │ ├── __init__.py │ ├── api.py │ ├── cancorr.py │ ├── factor.py │ ├── factor_rotation │ │ ├── COPYRIGHTS.txt │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── _analytic_rotation.py │ │ ├── _gpa_rotation.py │ │ ├── _wrappers.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_rotation.py │ ├── manova.py │ ├── multivariate_ols.py │ ├── pca.py │ ├── plots.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── datamlw.py │ │ ├── factor_data.csv │ │ └── factors_stata.csv │ │ ├── test_cancorr.py │ │ ├── test_factor.py │ │ ├── test_manova.py │ │ ├── test_ml_factor.py │ │ ├── test_multivariate_ols.py │ │ └── test_pca.py ├── nonparametric │ ├── __init__.py │ ├── _kernel_base.py │ ├── _smoothers_lowess.pyx │ ├── api.py │ ├── bandwidths.py │ ├── kde.py │ ├── kdetools.py │ ├── kernel_density.py │ ├── kernel_regression.py │ ├── kernels.py │ ├── linbin.pyx │ ├── smoothers_lowess.py │ ├── smoothers_lowess_old.py │ └── tests │ │ ├── Xi_test_data.csv │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── results_kcde.csv │ │ ├── results_kde.csv │ │ ├── results_kde_fft.csv │ │ ├── results_kde_univ_weights.csv │ │ ├── results_kde_weights.csv │ │ ├── results_kernel_regression.csv │ │ ├── test_lowess_delta.csv │ │ ├── test_lowess_frac.csv │ │ ├── test_lowess_iter.csv │ │ ├── test_lowess_r_outputs.R │ │ └── test_lowess_simple.csv │ │ ├── test_bandwidths.py │ │ ├── test_kde.py │ │ ├── test_kernel_density.py │ │ ├── test_kernel_regression.py │ │ ├── test_kernels.py │ │ └── test_lowess.py ├── regression │ ├── __init__.py │ ├── _prediction.py │ ├── _tools.py │ ├── dimred.py │ ├── feasible_gls.py │ ├── linear_model.py │ ├── mixed_linear_model.py │ ├── process_regression.py │ ├── quantile_regression.py │ ├── recursive_ls.py │ ├── rolling.py │ └── tests │ │ ├── __init__.py │ │ ├── lme_examples.R │ │ ├── results │ │ ├── __init__.py │ │ ├── dietox.csv │ │ ├── generate_lasso.py │ │ ├── generate_lme.py │ │ ├── glmnet_r_results.py │ │ ├── lasso_data.csv │ │ ├── lasso_r_results.R │ │ ├── leverage_influence_ols_nostars.txt │ │ ├── lme00.csv │ │ ├── lme01.csv │ │ ├── lme02.csv │ │ ├── lme03.csv │ │ ├── lme04.csv │ │ ├── lme05.csv │ │ ├── lme06.csv │ │ ├── lme07.csv │ │ ├── lme08.csv │ │ ├── lme09.csv │ │ ├── lme10.csv │ │ ├── lme11.csv │ │ ├── lme_r_results.py │ │ ├── lme_results.R │ │ ├── macro_gr_corc_stata.py │ │ ├── pastes.csv │ │ ├── results_grunfeld_ols_robust_cluster.py │ │ ├── results_macro_ols_robust.py │ │ ├── results_quantile_regression.py │ │ ├── results_regression.py │ │ ├── results_rls_R.csv │ │ ├── results_rls_stata.csv │ │ ├── results_theil_textile.py │ │ ├── test_rls.R │ │ ├── test_rls.do │ │ └── theil_textile_predict.csv │ │ ├── test_cov.py │ │ ├── test_dimred.py │ │ ├── test_glsar_gretl.py │ │ ├── test_glsar_stata.py │ │ ├── test_lme.py │ │ ├── test_predict.py │ │ ├── test_processreg.py │ │ ├── test_quantile_regression.py │ │ ├── test_recursive_ls.py │ │ ├── test_regression.py │ │ ├── test_robustcov.py │ │ ├── test_rolling.py │ │ ├── test_theil.py │ │ └── test_tools.py ├── resampling │ └── __init__.py ├── robust │ ├── __init__.py │ ├── norms.py │ ├── robust_linear_model.py │ ├── scale.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ └── results_rlm.py │ │ ├── test_rlm.py │ │ └── test_scale.py ├── sandbox │ ├── __init__.py │ ├── archive │ │ ├── __init__.py │ │ ├── linalg_covmat.py │ │ ├── linalg_decomp_1.py │ │ └── tsa.py │ ├── bspline.py │ ├── datarich │ │ ├── __init__.py │ │ └── factormodels.py │ ├── descstats.py │ ├── distributions │ │ ├── __init__.py │ │ ├── copula.py │ │ ├── estimators.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── ex_extras.py │ │ │ ├── ex_fitfr.py │ │ │ ├── ex_gof.py │ │ │ ├── ex_mvelliptical.py │ │ │ ├── ex_transf2.py │ │ │ └── matchdist.py │ │ ├── extras.py │ │ ├── genpareto.py │ │ ├── gof_new.py │ │ ├── multivariate.py │ │ ├── mv_measures.py │ │ ├── mv_normal.py │ │ ├── otherdist.py │ │ ├── quantize.py │ │ ├── sppatch.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── _est_fit.py │ │ │ ├── check_moments.py │ │ │ ├── distparams.py │ │ │ ├── test_extras.py │ │ │ ├── test_gof_new.py │ │ │ ├── test_multivariate.py │ │ │ ├── test_norm_expan.py │ │ │ └── test_transf.py │ │ ├── transform_functions.py │ │ ├── transformed.py │ │ ├── try_max.py │ │ └── try_pot.py │ ├── examples │ │ ├── bayesprior.py │ │ ├── dji_table.csv │ │ ├── ex_cusum.py │ │ ├── ex_gam_results.py │ │ ├── ex_mixed_lls_0.py │ │ ├── ex_mixed_lls_re.py │ │ ├── ex_mixed_lls_timecorr.py │ │ ├── ex_onewaygls.py │ │ ├── ex_random_panel.py │ │ ├── example_crossval.py │ │ ├── example_gam.py │ │ ├── example_gam_0.py │ │ ├── example_maxent.py │ │ ├── example_mle.py │ │ ├── example_nbin.py │ │ ├── example_pca.py │ │ ├── example_pca_regression.py │ │ ├── example_sysreg.py │ │ ├── gspc_table.csv │ │ ├── run_all.py │ │ ├── thirdparty │ │ │ ├── ex_ratereturn.py │ │ │ ├── findow_1.py │ │ │ └── try_interchange.py │ │ ├── try_gmm_other.py │ │ ├── try_multiols.py │ │ ├── try_quantile_regression.py │ │ ├── try_quantile_regression1.py │ │ └── try_smoothers.py │ ├── gam.py │ ├── infotheo.py │ ├── mcevaluate │ │ ├── __init__.py │ │ ├── arma.py │ │ └── mcresuts_arma1.txt │ ├── mle.py │ ├── mlogitmath.lyx │ ├── multilinear.py │ ├── nonparametric │ │ ├── __init__.py │ │ ├── densityorthopoly.py │ │ ├── dgp_examples.py │ │ ├── kde2.py │ │ ├── kdecovclass.py │ │ ├── kernel_extras.py │ │ ├── kernels.py │ │ ├── smoothers.py │ │ ├── testdata.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── ex_gam_am_new.py │ │ │ ├── ex_gam_new.py │ │ │ ├── ex_smoothers.py │ │ │ ├── test_kernel_extras.py │ │ │ └── test_smoothers.py │ ├── nos4.mtx │ ├── panel │ │ ├── __init__.py │ │ ├── correlation_structures.py │ │ ├── mixed.py │ │ ├── panel_short.py │ │ ├── panelmod.py │ │ ├── random_panel.py │ │ ├── sandwich_covariance_generic.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_random_panel.py │ ├── pca.py │ ├── predict_functional.py │ ├── regression │ │ ├── __init__.py │ │ ├── anova_nistcertified.py │ │ ├── ar_panel.py │ │ ├── data │ │ │ ├── AtmWtAg.dat │ │ │ ├── Longley.dat │ │ │ ├── SiRstv.dat │ │ │ ├── SmLs01.dat │ │ │ ├── SmLs02.dat │ │ │ ├── SmLs03.dat │ │ │ ├── SmLs04.dat │ │ │ ├── SmLs05.dat │ │ │ ├── SmLs06.dat │ │ │ ├── SmLs07.dat │ │ │ ├── SmLs08.dat │ │ │ └── SmLs09.dat │ │ ├── example_kernridge.py │ │ ├── gmm.py │ │ ├── kernridgeregress_class.py │ │ ├── notes_runmnl.txt │ │ ├── ols_anova_original.py │ │ ├── onewaygls.py │ │ ├── penalized.py │ │ ├── predstd.py │ │ ├── runmnl.py │ │ ├── sympy_diff.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── griliches76.dta │ │ │ ├── racd10data_with_transformed.csv │ │ │ ├── results_gmm_griliches.py │ │ │ ├── results_gmm_griliches_iter.py │ │ │ ├── results_gmm_poisson.py │ │ │ ├── results_ivreg2_griliches.py │ │ │ ├── test_gmm.py │ │ │ └── test_gmm_poisson.py │ │ ├── tools.py │ │ ├── treewalkerclass.py │ │ ├── try_catdata.py │ │ ├── try_ols_anova.py │ │ └── try_treewalker.py │ ├── rls.py │ ├── rlsdata.txt │ ├── stats │ │ ├── __init__.py │ │ ├── contrast_tools.py │ │ ├── diagnostic.py │ │ ├── ex_newtests.py │ │ ├── multicomp.py │ │ ├── notes_fdr.txt │ │ ├── runs.py │ │ ├── stats_dhuard.py │ │ ├── stats_mstats_short.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_multicomp.py │ ├── sysreg.py │ ├── tests │ │ ├── GreeneEx15_1.s │ │ ├── __init__.py │ │ ├── macrodata.s │ │ ├── maketests_mlabwrap.py │ │ ├── savervs.py │ │ ├── sysreg.s │ │ ├── test_bspline.py.txt │ │ ├── test_gam.py │ │ ├── test_pca.py │ │ └── test_predict_functional.py │ ├── tools │ │ ├── TODO.txt │ │ ├── __init__.py │ │ ├── cross_val.py │ │ ├── mctools.py │ │ ├── tools_pca.py │ │ └── try_mctools.py │ └── tsa │ │ ├── __init__.py │ │ ├── diffusion.py │ │ ├── diffusion2.py │ │ ├── example_arma.py │ │ ├── examples │ │ ├── ex_mle_arma.py │ │ ├── example_var.py │ │ └── try_ld_nitime.py │ │ ├── fftarma.py │ │ ├── movstat.py │ │ ├── try_arma_more.py │ │ ├── try_fi.py │ │ ├── try_var_convolve.py │ │ └── varma.py ├── src │ ├── __init__.py │ ├── blas_lapack.pxd │ ├── capsule.h │ └── math.pxd ├── stats │ ├── __init__.py │ ├── _adnorm.py │ ├── _diagnostic_other.py │ ├── _knockoff.py │ ├── _lilliefors.py │ ├── _lilliefors_critical_values.py │ ├── anova.py │ ├── api.py │ ├── base.py │ ├── contingency_tables.py │ ├── contrast.py │ ├── correlation_tools.py │ ├── descriptivestats.py │ ├── diagnostic.py │ ├── gof.py │ ├── inter_rater.py │ ├── knockoff_regeffects.py │ ├── libqsturng │ │ ├── CH.r │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── make_tbls.py │ │ ├── qsturng_.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── bootleg.dat │ │ │ └── test_qsturng.py │ ├── mediation.py │ ├── moment_helpers.py │ ├── multicomp.py │ ├── multitest.py │ ├── multivariate_tools.py │ ├── oaxaca.py │ ├── outliers_influence.py │ ├── power.py │ ├── proportion.py │ ├── regularized_covariance.py │ ├── sandwich_covariance.py │ ├── stattools.py │ ├── tabledist.py │ ├── tests │ │ ├── __init__.py │ │ ├── gen_contingency_table_tests.R │ │ ├── results │ │ │ ├── __init__.py │ │ │ ├── anova.R │ │ │ ├── binary_constrict.csv │ │ │ ├── bootleg.csv │ │ │ ├── contingency_table_r_results.csv │ │ │ ├── data.dat │ │ │ ├── framing.csv │ │ │ ├── influence_lsdiag_R.json │ │ │ ├── influence_measures_R.csv │ │ │ ├── influence_measures_bool_R.csv │ │ │ ├── lilliefors_critical_value_simulation.py │ │ │ ├── results_influence_logit.csv │ │ │ ├── results_multinomial_proportions.py │ │ │ ├── results_panelrobust.py │ │ │ ├── results_power.py │ │ │ ├── results_proportion.py │ │ │ ├── wspec1.csv │ │ │ ├── wspec2.csv │ │ │ ├── wspec3.csv │ │ │ └── wspec4.csv │ │ ├── test_anova.py │ │ ├── test_anova_rm.py │ │ ├── test_contingency_tables.py │ │ ├── test_contrast.py │ │ ├── test_correlation.py │ │ ├── test_corrpsd.py │ │ ├── test_data.txt │ │ ├── test_descriptivestats.py │ │ ├── test_diagnostic.py │ │ ├── test_diagnostic_other.py │ │ ├── test_gof.py │ │ ├── test_groups_sw.py │ │ ├── test_influence.py │ │ ├── test_inter_rater.py │ │ ├── test_knockoff.py │ │ ├── test_lilliefors.py │ │ ├── test_mediation.py │ │ ├── test_moment_helpers.py │ │ ├── test_multi.py │ │ ├── test_nonparametric.py │ │ ├── test_oaxaca.py │ │ ├── test_outliers_influence.py │ │ ├── test_pairwise.py │ │ ├── test_panel_robustcov.py │ │ ├── test_power.py │ │ ├── test_proportion.py │ │ ├── test_qsturng.py │ │ ├── test_regularized_covariance.py │ │ ├── test_sandwich.py │ │ ├── test_statstools.py │ │ ├── test_tabledist.py │ │ ├── test_tost.py │ │ └── test_weightstats.py │ └── weightstats.py ├── tests │ ├── __init__.py │ └── test_package.py ├── tools │ ├── __init__.py │ ├── _testing.py │ ├── catadd.py │ ├── data.py │ ├── decorators.py │ ├── docstring.py │ ├── eval_measures.py │ ├── grouputils.py │ ├── linalg.py │ ├── numdiff.py │ ├── parallel.py │ ├── print_version.py │ ├── rootfinding.py │ ├── sequences.py │ ├── sm_exceptions.py │ ├── testing.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_catadd.py │ │ ├── test_data.py │ │ ├── test_decorators.py │ │ ├── test_docstring.py │ │ ├── test_eval_measures.py │ │ ├── test_grouputils.py │ │ ├── test_linalg.py │ │ ├── test_numdiff.py │ │ ├── test_parallel.py │ │ ├── test_rootfinding.py │ │ ├── test_sequences.py │ │ ├── test_testing.py │ │ ├── test_tools.py │ │ ├── test_transform_model.py │ │ └── test_web.py │ ├── tools.py │ ├── transform_model.py │ ├── validation │ │ ├── __init__.py │ │ ├── decorators.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_validation.py │ │ └── validation.py │ └── web.py └── tsa │ ├── __init__.py │ ├── _bds.py │ ├── _exponential_smoothers.pyx │ ├── _innovations.pyx │ ├── _stl.pyx │ ├── adfvalues.py │ ├── api.py │ ├── ar_model.py │ ├── arima │ ├── __init__.py │ ├── api.py │ ├── datasets │ │ ├── __init__.py │ │ └── brockwell_davis_2002 │ │ │ ├── __init__.py │ │ │ └── data │ │ │ ├── __init__.py │ │ │ ├── dowj.py │ │ │ ├── lake.py │ │ │ ├── oshorts.py │ │ │ └── sbl.py │ ├── estimators │ │ ├── __init__.py │ │ ├── burg.py │ │ ├── durbin_levinson.py │ │ ├── gls.py │ │ ├── hannan_rissanen.py │ │ ├── innovations.py │ │ ├── statespace.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── results │ │ │ │ ├── results_burg.R │ │ │ │ ├── results_hr.R │ │ │ │ ├── results_innovations_ma.R │ │ │ │ └── results_yw_dl.R │ │ │ ├── test_burg.py │ │ │ ├── test_durbin_levinson.py │ │ │ ├── test_gls.py │ │ │ ├── test_hannan_rissanen.py │ │ │ ├── test_innovations.py │ │ │ ├── test_statespace.py │ │ │ └── test_yule_walker.py │ │ └── yule_walker.py │ ├── model.py │ ├── params.py │ ├── specification.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_model.py │ │ ├── test_params.py │ │ ├── test_specification.py │ │ └── test_tools.py │ └── tools.py │ ├── arima_model.py │ ├── arima_process.py │ ├── arma_mle.py │ ├── base │ ├── __init__.py │ ├── datetools.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_datetools.py │ │ └── test_tsa_indexes.py │ └── tsa_model.py │ ├── coint_tables.py │ ├── descriptivestats.py │ ├── exponential_smoothing │ ├── __init__.py │ └── initialization.py │ ├── filters │ ├── __init__.py │ ├── _utils.py │ ├── api.py │ ├── bk_filter.py │ ├── cf_filter.py │ ├── filtertools.py │ ├── hp_filter.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── filter.R │ │ └── filter_results.py │ │ └── test_filters.py │ ├── holtwinters.py │ ├── innovations │ ├── __init__.py │ ├── _arma_innovations.pyx.in │ ├── api.py │ ├── arma_innovations.py │ └── tests │ │ ├── __init__.py │ │ ├── test_arma_innovations.py │ │ └── test_cython_arma_innovations_fast.py │ ├── interp │ ├── __init__.py │ ├── denton.py │ └── tests │ │ ├── __init__.py │ │ └── test_denton.py │ ├── kalmanf │ ├── __init__.py │ ├── kalman_loglike.pyx │ └── kalmanfilter.py │ ├── mlemodel.py │ ├── regime_switching │ ├── __init__.py │ ├── _hamilton_filter.pxd │ ├── _hamilton_filter.pyx.in │ ├── _kim_smoother.pxd │ ├── _kim_smoother.pyx.in │ ├── markov_autoregression.py │ ├── markov_regression.py │ ├── markov_switching.py │ └── tests │ │ ├── __init__.py │ │ ├── results │ │ ├── __init__.py │ │ ├── mar_filardo.csv │ │ ├── results_predict_fedfunds.csv │ │ └── results_predict_rgnp.csv │ │ ├── test_markov_autoregression.py │ │ ├── test_markov_regression.py │ │ └── test_markov_switching.py │ ├── seasonal.py │ ├── statespace │ ├── __init__.py │ ├── _filters │ │ ├── __init__.py │ │ ├── _conventional.pxd │ │ ├── _conventional.pyx.in │ │ ├── _inversions.pxd │ │ ├── _inversions.pyx.in │ │ ├── _univariate.pxd │ │ ├── _univariate.pyx.in │ │ ├── _univariate_diffuse.pxd │ │ └── _univariate_diffuse.pyx.in │ ├── _initialization.pxd │ ├── _initialization.pyx.in │ ├── _kalman_filter.pxd │ ├── _kalman_filter.pyx.in │ ├── _kalman_smoother.pxd │ ├── _kalman_smoother.pyx.in │ ├── _pykalman_smoother.py │ ├── _representation.pxd │ ├── _representation.pyx.in │ ├── _simulation_smoother.pxd │ ├── _simulation_smoother.pyx.in │ ├── _smoothers │ │ ├── __init__.py │ │ ├── _alternative.pxd │ │ ├── _alternative.pyx.in │ │ ├── _classical.pxd │ │ ├── _classical.pyx.in │ │ ├── _conventional.pxd │ │ ├── _conventional.pyx.in │ │ ├── _univariate.pxd │ │ ├── _univariate.pyx.in │ │ ├── _univariate_diffuse.pxd │ │ └── _univariate_diffuse.pyx.in │ ├── _tools.pxd │ ├── _tools.pyx.in │ ├── api.py │ ├── dynamic_factor.py │ ├── exponential_smoothing.py │ ├── initialization.py │ ├── kalman_filter.py │ ├── kalman_smoother.py │ ├── mlemodel.py │ ├── representation.py │ ├── sarimax.py │ ├── simulation_smoother.py │ ├── structural.py │ ├── tests │ │ ├── __init__.py │ │ ├── kfas_helpers.py │ │ ├── results │ │ │ ├── __init__.py │ │ │ ├── clark1989.csv │ │ │ ├── example_ssm_wpi1.m │ │ │ ├── exponential_smoothing.R │ │ │ ├── exponential_smoothing_params.csv │ │ │ ├── exponential_smoothing_predict.csv │ │ │ ├── exponential_smoothing_states.csv │ │ │ ├── kfas_helpers.R │ │ │ ├── manufac.dta │ │ │ ├── results_clark1989_R.csv │ │ │ ├── results_dynamic_factor.py │ │ │ ├── results_dynamic_factor_stata.csv │ │ │ ├── results_exact_initial_common_level_R.csv │ │ │ ├── results_exact_initial_common_level_restricted_R.csv │ │ │ ├── results_exact_initial_dfm_R.csv │ │ │ ├── results_exact_initial_local_level_R.csv │ │ │ ├── results_exact_initial_local_linear_trend_R.csv │ │ │ ├── results_exact_initial_local_linear_trend_missing_R.csv │ │ │ ├── results_exact_initial_var1_R.csv │ │ │ ├── results_exact_initial_var1_measurement_error_R.csv │ │ │ ├── results_exact_initial_var1_missing_R.csv │ │ │ ├── results_exact_initial_var1_mixed_R.csv │ │ │ ├── results_intercepts_R.csv │ │ │ ├── results_kalman_filter.py │ │ │ ├── results_realgdpar_stata.csv │ │ │ ├── results_sarimax.py │ │ │ ├── results_sarimax_coverage.csv │ │ │ ├── results_simulation_smoothing0.csv │ │ │ ├── results_simulation_smoothing1.csv │ │ │ ├── results_simulation_smoothing2.csv │ │ │ ├── results_simulation_smoothing3.csv │ │ │ ├── results_simulation_smoothing3_variates.csv │ │ │ ├── results_simulation_smoothing4.csv │ │ │ ├── results_simulation_smoothing5.csv │ │ │ ├── results_simulation_smoothing6.csv │ │ │ ├── results_smoothing2_R.csv │ │ │ ├── results_smoothing3_R.csv │ │ │ ├── results_smoothing_R.csv │ │ │ ├── results_smoothing_generalobscov_R.csv │ │ │ ├── results_structural.py │ │ │ ├── results_var_R.py │ │ │ ├── results_var_R_output.csv │ │ │ ├── results_var_misc.py │ │ │ ├── results_var_stata.csv │ │ │ ├── results_varmax.py │ │ │ ├── results_varmax_stata.csv │ │ │ ├── results_wpi1_ar3_matlab_ssm.csv │ │ │ ├── results_wpi1_ar3_stata.csv │ │ │ ├── results_wpi1_missing_ar3_matlab_ssm.csv │ │ │ ├── sm-0.9-sarimax.pkl │ │ │ ├── test_clark1989_r.R │ │ │ ├── test_dynamic_factor_stata.do │ │ │ ├── test_exact_diffuse_filtering.R │ │ │ ├── test_exact_diffuse_filtering_multivariate.R │ │ │ ├── test_exact_diffuse_filtering_stata.do │ │ │ ├── test_intercepts.R │ │ │ ├── test_realgdpar_r.R │ │ │ ├── test_realgdpar_stata.do │ │ │ ├── test_sarimax_coverage.do │ │ │ ├── test_sarimax_stata.do │ │ │ ├── test_simulation_smoothing.R │ │ │ ├── test_smoothing.R │ │ │ ├── test_smoothing2.R │ │ │ ├── test_smoothing3.R │ │ │ ├── test_smoothing_generalobscov.R │ │ │ ├── test_ucm.R │ │ │ ├── test_var.R │ │ │ ├── test_var_misc_stata.do │ │ │ ├── test_varmax_stata.do │ │ │ └── test_wpi1_stata.do │ │ ├── test_collapsed.py │ │ ├── test_concentrated.py │ │ ├── test_conserve_memory.py │ │ ├── test_dynamic_factor.py │ │ ├── test_exact_diffuse_filtering.py │ │ ├── test_exponential_smoothing.py │ │ ├── test_fixed_params.py │ │ ├── test_impulse_responses.py │ │ ├── test_initialization.py │ │ ├── test_kalman.py │ │ ├── test_mlemodel.py │ │ ├── test_models.py │ │ ├── test_options.py │ │ ├── test_pickle.py │ │ ├── test_prediction.py │ │ ├── test_representation.py │ │ ├── test_sarimax.py │ │ ├── test_save.py │ │ ├── test_simulate.py │ │ ├── test_simulation_smoothing.py │ │ ├── test_smoothing.py │ │ ├── test_structural.py │ │ ├── test_tools.py │ │ ├── test_univariate.py │ │ ├── test_var.py │ │ └── test_varmax.py │ ├── tools.py │ └── varmax.py │ ├── stattools.py │ ├── tests │ ├── __init__.py │ ├── arima.do │ ├── arima112.do │ ├── arima211.do │ ├── results │ │ ├── ARMLEConstantPredict.csv │ │ ├── AROLSConstantPredict.csv │ │ ├── AROLSNoConstantPredict.csv │ │ ├── __init__.py │ │ ├── arima.R │ │ ├── arima111_css_results.py │ │ ├── arima111_forecasts.csv │ │ ├── arima111_results.py │ │ ├── arima111nc_css_results.py │ │ ├── arima111nc_results.py │ │ ├── arima112_css_results.py │ │ ├── arima112_results.py │ │ ├── arima112nc_css_results.py │ │ ├── arima112nc_results.py │ │ ├── arima211_css_results.py │ │ ├── arima211_results.py │ │ ├── arima211nc_css_results.py │ │ ├── arima211nc_results.py │ │ ├── arima212_forecast.csv │ │ ├── arima_forecast.inp │ │ ├── arma_forecast.inp │ │ ├── bds_data.csv │ │ ├── bds_results.csv │ │ ├── corrgram.do │ │ ├── datamlw_tls.py │ │ ├── gnpdef.csv │ │ ├── housing-data.csv │ │ ├── lutkepohl2.dta │ │ ├── make_arma.py │ │ ├── rand10000.csv │ │ ├── resids_css_c.csv │ │ ├── resids_css_nc.csv │ │ ├── resids_exact_c.csv │ │ ├── resids_exact_nc.csv │ │ ├── results_ar.py │ │ ├── results_ar_forecast_mle_dynamic.csv │ │ ├── results_arima.py │ │ ├── results_arima_exog_forecasts_css.csv │ │ ├── results_arima_exog_forecasts_mle.csv │ │ ├── results_arima_forecasts.csv │ │ ├── results_arima_forecasts_all_css.csv │ │ ├── results_arima_forecasts_all_css_diff.csv │ │ ├── results_arima_forecasts_all_mle.csv │ │ ├── results_arima_forecasts_all_mle_diff.csv │ │ ├── results_arma.py │ │ ├── results_arma_acf.py │ │ ├── results_arma_forecasts.csv │ │ ├── results_corrgram.csv │ │ ├── results_process.py │ │ ├── rgnp.csv │ │ ├── rgnpq.csv │ │ ├── savedrvs.py │ │ ├── stkprc.csv │ │ ├── stl-fixed.f90 │ │ ├── stl_co2 │ │ ├── stl_co2.csv │ │ ├── stl_test_data.f90 │ │ ├── stl_test_results.csv │ │ ├── test_arma_acf.R │ │ ├── test_bds.m │ │ ├── y_arma_data.csv │ │ ├── yhat_css_c.csv │ │ ├── yhat_css_nc.csv │ │ ├── yhat_exact_c.csv │ │ └── yhat_exact_nc.csv │ ├── test_adfuller_lag.py │ ├── test_ar.py │ ├── test_arima.py │ ├── test_arima_process.py │ ├── test_bds.py │ ├── test_holtwinters.py │ ├── test_seasonal.py │ ├── test_stattools.py │ ├── test_stl.py │ ├── test_tsa_tools.py │ └── test_x13.py │ ├── tsatools.py │ ├── varma_process.py │ ├── vector_ar │ ├── __init__.py │ ├── api.py │ ├── hypothesis_test_results.py │ ├── irf.py │ ├── output.py │ ├── plotting.py │ ├── svar_model.py │ ├── tests │ │ ├── JMulTi_results │ │ │ ├── __init__.py │ │ │ ├── macrodata_jmulti_c.txt │ │ │ ├── macrodata_jmulti_c_Sigmau.txt │ │ │ ├── macrodata_jmulti_c_diag.txt │ │ │ ├── macrodata_jmulti_c_fc5.txt │ │ │ ├── macrodata_jmulti_c_granger_causality_realcons.txt │ │ │ ├── macrodata_jmulti_c_granger_causality_realcons_realgdp.txt │ │ │ ├── macrodata_jmulti_c_granger_causality_realcons_realinv.txt │ │ │ ├── macrodata_jmulti_c_granger_causality_realgdp.txt │ │ │ ├── macrodata_jmulti_c_granger_causality_realgdp_realinv.txt │ │ │ ├── macrodata_jmulti_c_granger_causality_realinv.txt │ │ │ ├── macrodata_jmulti_c_ir.txt │ │ │ ├── macrodata_jmulti_c_lagorder.txt │ │ │ ├── macrodata_jmulti_cs.txt │ │ │ ├── macrodata_jmulti_cs_Sigmau.txt │ │ │ ├── macrodata_jmulti_cs_diag.txt │ │ │ ├── macrodata_jmulti_cs_fc5.txt │ │ │ ├── macrodata_jmulti_cs_granger_causality_realcons.txt │ │ │ ├── macrodata_jmulti_cs_granger_causality_realcons_realgdp.txt │ │ │ ├── macrodata_jmulti_cs_granger_causality_realcons_realinv.txt │ │ │ ├── macrodata_jmulti_cs_granger_causality_realgdp.txt │ │ │ ├── macrodata_jmulti_cs_granger_causality_realgdp_realinv.txt │ │ │ ├── macrodata_jmulti_cs_granger_causality_realinv.txt │ │ │ ├── macrodata_jmulti_cs_ir.txt │ │ │ ├── macrodata_jmulti_cs_lagorder.txt │ │ │ ├── macrodata_jmulti_cst.txt │ │ │ ├── macrodata_jmulti_cst_Sigmau.txt │ │ │ ├── macrodata_jmulti_cst_diag.txt │ │ │ ├── macrodata_jmulti_cst_fc5.txt │ │ │ ├── macrodata_jmulti_cst_granger_causality_realcons.txt │ │ │ ├── macrodata_jmulti_cst_granger_causality_realcons_realgdp.txt │ │ │ ├── macrodata_jmulti_cst_granger_causality_realcons_realinv.txt │ │ │ ├── macrodata_jmulti_cst_granger_causality_realgdp.txt │ │ │ ├── macrodata_jmulti_cst_granger_causality_realgdp_realinv.txt │ │ │ ├── macrodata_jmulti_cst_granger_causality_realinv.txt │ │ │ ├── macrodata_jmulti_cst_ir.txt │ │ │ ├── macrodata_jmulti_cst_lagorder.txt │ │ │ ├── macrodata_jmulti_ct.txt │ │ │ ├── macrodata_jmulti_ct_Sigmau.txt │ │ │ ├── macrodata_jmulti_ct_diag.txt │ │ │ ├── macrodata_jmulti_ct_fc5.txt │ │ │ ├── macrodata_jmulti_ct_granger_causality_realcons.txt │ │ │ ├── macrodata_jmulti_ct_granger_causality_realcons_realgdp.txt │ │ │ ├── macrodata_jmulti_ct_granger_causality_realcons_realinv.txt │ │ │ ├── macrodata_jmulti_ct_granger_causality_realgdp.txt │ │ │ ├── macrodata_jmulti_ct_granger_causality_realgdp_realinv.txt │ │ │ ├── macrodata_jmulti_ct_granger_causality_realinv.txt │ │ │ ├── macrodata_jmulti_ct_ir.txt │ │ │ ├── macrodata_jmulti_ct_lagorder.txt │ │ │ ├── macrodata_jmulti_nc.txt │ │ │ ├── macrodata_jmulti_nc_Sigmau.txt │ │ │ ├── macrodata_jmulti_nc_diag.txt │ │ │ ├── macrodata_jmulti_nc_fc5.txt │ │ │ ├── macrodata_jmulti_nc_granger_causality_realcons.txt │ │ │ ├── macrodata_jmulti_nc_granger_causality_realcons_realgdp.txt │ │ │ ├── macrodata_jmulti_nc_granger_causality_realcons_realinv.txt │ │ │ ├── macrodata_jmulti_nc_granger_causality_realgdp.txt │ │ │ ├── macrodata_jmulti_nc_granger_causality_realgdp_realinv.txt │ │ │ ├── macrodata_jmulti_nc_granger_causality_realinv.txt │ │ │ ├── macrodata_jmulti_nc_ir.txt │ │ │ ├── macrodata_jmulti_nc_lagorder.txt │ │ │ ├── macrodata_jmulti_ncs.txt │ │ │ ├── macrodata_jmulti_ncs_Sigmau.txt │ │ │ ├── macrodata_jmulti_ncs_diag.txt │ │ │ ├── macrodata_jmulti_ncs_fc5.txt │ │ │ ├── macrodata_jmulti_ncs_granger_causality_realcons.txt │ │ │ ├── macrodata_jmulti_ncs_granger_causality_realcons_realgdp.txt │ │ │ ├── macrodata_jmulti_ncs_granger_causality_realcons_realinv.txt │ │ │ ├── macrodata_jmulti_ncs_granger_causality_realgdp.txt │ │ │ ├── macrodata_jmulti_ncs_granger_causality_realgdp_realinv.txt │ │ │ ├── macrodata_jmulti_ncs_granger_causality_realinv.txt │ │ │ ├── macrodata_jmulti_ncs_ir.txt │ │ │ ├── macrodata_jmulti_ncs_lagorder.txt │ │ │ ├── parse_jmulti_var_output.py │ │ │ ├── parse_jmulti_vecm_output.py │ │ │ ├── vecm_e6_jmulti_ci.txt │ │ │ ├── vecm_e6_jmulti_ci_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_ci_diag.txt │ │ │ ├── vecm_e6_jmulti_ci_fc5.txt │ │ │ ├── vecm_e6_jmulti_ci_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_ci_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_ci_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_ci_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_ci_ir.txt │ │ │ ├── vecm_e6_jmulti_ci_lagorder.txt │ │ │ ├── vecm_e6_jmulti_cili.txt │ │ │ ├── vecm_e6_jmulti_cili_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_cili_diag.txt │ │ │ ├── vecm_e6_jmulti_cili_fc5.txt │ │ │ ├── vecm_e6_jmulti_cili_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cili_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cili_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cili_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cili_ir.txt │ │ │ ├── vecm_e6_jmulti_cili_lagorder.txt │ │ │ ├── vecm_e6_jmulti_cis.txt │ │ │ ├── vecm_e6_jmulti_cis_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_cis_diag.txt │ │ │ ├── vecm_e6_jmulti_cis_fc5.txt │ │ │ ├── vecm_e6_jmulti_cis_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cis_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cis_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cis_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cis_ir.txt │ │ │ ├── vecm_e6_jmulti_cis_lagorder.txt │ │ │ ├── vecm_e6_jmulti_cisli.txt │ │ │ ├── vecm_e6_jmulti_cisli_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_cisli_diag.txt │ │ │ ├── vecm_e6_jmulti_cisli_fc5.txt │ │ │ ├── vecm_e6_jmulti_cisli_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cisli_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cisli_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cisli_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cisli_ir.txt │ │ │ ├── vecm_e6_jmulti_cisli_lagorder.txt │ │ │ ├── vecm_e6_jmulti_co.txt │ │ │ ├── vecm_e6_jmulti_co_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_co_diag.txt │ │ │ ├── vecm_e6_jmulti_co_fc5.txt │ │ │ ├── vecm_e6_jmulti_co_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_co_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_co_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_co_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_co_ir.txt │ │ │ ├── vecm_e6_jmulti_co_lagorder.txt │ │ │ ├── vecm_e6_jmulti_colo.txt │ │ │ ├── vecm_e6_jmulti_colo_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_colo_diag.txt │ │ │ ├── vecm_e6_jmulti_colo_fc5.txt │ │ │ ├── vecm_e6_jmulti_colo_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_colo_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_colo_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_colo_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_colo_ir.txt │ │ │ ├── vecm_e6_jmulti_colo_lagorder.txt │ │ │ ├── vecm_e6_jmulti_cos.txt │ │ │ ├── vecm_e6_jmulti_cos_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_cos_diag.txt │ │ │ ├── vecm_e6_jmulti_cos_fc5.txt │ │ │ ├── vecm_e6_jmulti_cos_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cos_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cos_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_cos_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_cos_ir.txt │ │ │ ├── vecm_e6_jmulti_cos_lagorder.txt │ │ │ ├── vecm_e6_jmulti_coslo.txt │ │ │ ├── vecm_e6_jmulti_coslo_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_coslo_diag.txt │ │ │ ├── vecm_e6_jmulti_coslo_fc5.txt │ │ │ ├── vecm_e6_jmulti_coslo_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_coslo_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_coslo_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_coslo_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_coslo_ir.txt │ │ │ ├── vecm_e6_jmulti_coslo_lagorder.txt │ │ │ ├── vecm_e6_jmulti_nc.txt │ │ │ ├── vecm_e6_jmulti_nc_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_nc_diag.txt │ │ │ ├── vecm_e6_jmulti_nc_fc5.txt │ │ │ ├── vecm_e6_jmulti_nc_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_nc_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_nc_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_nc_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_nc_ir.txt │ │ │ ├── vecm_e6_jmulti_nc_lagorder.txt │ │ │ ├── vecm_e6_jmulti_ncs.txt │ │ │ ├── vecm_e6_jmulti_ncs_Sigmau.txt │ │ │ ├── vecm_e6_jmulti_ncs_diag.txt │ │ │ ├── vecm_e6_jmulti_ncs_fc5.txt │ │ │ ├── vecm_e6_jmulti_ncs_granger_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_ncs_granger_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_ncs_inst_causality_dp_r.txt │ │ │ ├── vecm_e6_jmulti_ncs_inst_causality_r_dp.txt │ │ │ ├── vecm_e6_jmulti_ncs_ir.txt │ │ │ └── vecm_e6_jmulti_ncs_lagorder.txt │ │ ├── Matlab_results │ │ │ ├── __init__.py │ │ │ └── test_coint.csv │ │ ├── __init__.py │ │ ├── example_svar.py │ │ ├── results │ │ │ ├── __init__.py │ │ │ ├── e1.dat │ │ │ ├── e2.dat │ │ │ ├── e3.dat │ │ │ ├── e4.dat │ │ │ ├── e5.dat │ │ │ ├── e6.dat │ │ │ ├── results_svar.py │ │ │ ├── results_svar_st.py │ │ │ ├── results_var.py │ │ │ ├── results_var_data.py │ │ │ └── vars_results.npz │ │ ├── svar.do │ │ ├── svartest.R │ │ ├── test_coint.py │ │ ├── test_svar.py │ │ ├── test_var.py │ │ ├── test_var_jmulti.py │ │ ├── test_vecm.py │ │ └── var.R │ ├── util.py │ ├── var_model.py │ └── vecm.py │ └── x13.py ├── tools ├── R2nparray │ ├── DESCRIPTION │ ├── NAMESPACE │ ├── R │ │ ├── R2nparray-package.R │ │ ├── R2nparray.R │ │ └── ex_sur.R │ └── README.txt ├── README.rst ├── ci │ ├── README.md │ ├── appveyor_conda.bat │ ├── appveyor_pip.bat │ ├── azure_template.yml │ ├── docbuild.sh │ ├── docbuild_install.sh │ ├── run_test.bat │ ├── travis_conda.sh │ └── travis_pip.sh ├── dataset_rst.py ├── estmat2nparray.ado ├── export_notebooks_to_python.py ├── generate_formula_api.py ├── nbgenerate.py ├── releasing │ ├── release_note.py │ └── release_note.tmpl └── validate_docstrings.py ├── tox.ini └── versioneer.py /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | statsmodels/_version.py export-subst 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.mailmap -------------------------------------------------------------------------------- /.pep8speaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.pep8speaks.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /COPYRIGHTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/COPYRIGHTS.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/README.rst -------------------------------------------------------------------------------- /README_l1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/README_l1.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/appveyor.yml -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/docs/GLMNotes.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/docs/GLMNotes.lyx -------------------------------------------------------------------------------- /archive/docs/GLMNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/docs/GLMNotes.pdf -------------------------------------------------------------------------------- /archive/docs/fix_longtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/docs/fix_longtable.py -------------------------------------------------------------------------------- /archive/docs/source/genericmle.rst.TXT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/tsa/ex_arma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/tsa/ex_arma.py -------------------------------------------------------------------------------- /archive/tsa/ex_mle_garch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/tsa/ex_mle_garch.py -------------------------------------------------------------------------------- /archive/tsa/example_garch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/tsa/example_garch.py -------------------------------------------------------------------------------- /archive/tsa/garch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/tsa/garch.py -------------------------------------------------------------------------------- /archive/tsa/notes_organize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/archive/tsa/notes_organize.txt -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/blogger.png -------------------------------------------------------------------------------- /docs/source/_static/blogger_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/blogger_sm.png -------------------------------------------------------------------------------- /docs/source/_static/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/bullet.gif -------------------------------------------------------------------------------- /docs/source/_static/closelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/closelabel.png -------------------------------------------------------------------------------- /docs/source/_static/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/examples.css -------------------------------------------------------------------------------- /docs/source/_static/facebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/facebox.css -------------------------------------------------------------------------------- /docs/source/_static/facebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/facebox.js -------------------------------------------------------------------------------- /docs/source/_static/gettingstarted_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/gettingstarted_0.png -------------------------------------------------------------------------------- /docs/source/_static/images/anova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/anova.png -------------------------------------------------------------------------------- /docs/source/_static/images/contrasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/contrasts.png -------------------------------------------------------------------------------- /docs/source/_static/images/fairs_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/fairs_data.png -------------------------------------------------------------------------------- /docs/source/_static/images/gls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/gls.png -------------------------------------------------------------------------------- /docs/source/_static/images/mixed_lm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/mixed_lm.png -------------------------------------------------------------------------------- /docs/source/_static/images/ols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/ols.png -------------------------------------------------------------------------------- /docs/source/_static/images/prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/prediction.png -------------------------------------------------------------------------------- /docs/source/_static/images/rlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/rlm.png -------------------------------------------------------------------------------- /docs/source/_static/images/rolling_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/rolling_ls.png -------------------------------------------------------------------------------- /docs/source/_static/images/tsa_arma0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/tsa_arma0.png -------------------------------------------------------------------------------- /docs/source/_static/images/tsa_arma1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/tsa_arma1.png -------------------------------------------------------------------------------- /docs/source/_static/images/tsa_dates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/tsa_dates.png -------------------------------------------------------------------------------- /docs/source/_static/images/wls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/images/wls.png -------------------------------------------------------------------------------- /docs/source/_static/ipython.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/ipython.min.css -------------------------------------------------------------------------------- /docs/source/_static/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/loading.gif -------------------------------------------------------------------------------- /docs/source/_static/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/minus.gif -------------------------------------------------------------------------------- /docs/source/_static/mktree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/mktree.css -------------------------------------------------------------------------------- /docs/source/_static/mktree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/mktree.js -------------------------------------------------------------------------------- /docs/source/_static/nbviewer.pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/nbviewer.pygments.css -------------------------------------------------------------------------------- /docs/source/_static/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/plus.gif -------------------------------------------------------------------------------- /docs/source/_static/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/scripts.js -------------------------------------------------------------------------------- /docs/source/_static/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_static/versions.json -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/about.rst -------------------------------------------------------------------------------- /docs/source/anova.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/anova.rst -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contingency_tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/contingency_tables.rst -------------------------------------------------------------------------------- /docs/source/contrasts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/contrasts.rst -------------------------------------------------------------------------------- /docs/source/datasets/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/datasets/index.rst -------------------------------------------------------------------------------- /docs/source/dev/dataset_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/dataset_notes.rst -------------------------------------------------------------------------------- /docs/source/dev/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/examples.rst -------------------------------------------------------------------------------- /docs/source/dev/get_involved.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/get_involved.rst -------------------------------------------------------------------------------- /docs/source/dev/git_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/git_notes.rst -------------------------------------------------------------------------------- /docs/source/dev/images/git_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/images/git_merge.png -------------------------------------------------------------------------------- /docs/source/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/index.rst -------------------------------------------------------------------------------- /docs/source/dev/internal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/internal.rst -------------------------------------------------------------------------------- /docs/source/dev/maintainer_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/maintainer_notes.rst -------------------------------------------------------------------------------- /docs/source/dev/naming_conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/naming_conventions.rst -------------------------------------------------------------------------------- /docs/source/dev/test_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/test_notes.rst -------------------------------------------------------------------------------- /docs/source/dev/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/dev/testing.rst -------------------------------------------------------------------------------- /docs/source/diagnostic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/diagnostic.rst -------------------------------------------------------------------------------- /docs/source/discretemod.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/discretemod.rst -------------------------------------------------------------------------------- /docs/source/distributions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/distributions.rst -------------------------------------------------------------------------------- /docs/source/duration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/duration.rst -------------------------------------------------------------------------------- /docs/source/emplike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/emplike.rst -------------------------------------------------------------------------------- /docs/source/endog_exog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/endog_exog.rst -------------------------------------------------------------------------------- /docs/source/example_formulas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/example_formulas.rst -------------------------------------------------------------------------------- /docs/source/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/examples/README -------------------------------------------------------------------------------- /docs/source/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/examples/index.rst -------------------------------------------------------------------------------- /docs/source/examples/landing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/examples/landing.json -------------------------------------------------------------------------------- /docs/source/extending.rst.TXT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/gam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/gam.rst -------------------------------------------------------------------------------- /docs/source/gee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/gee.rst -------------------------------------------------------------------------------- /docs/source/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/gettingstarted.rst -------------------------------------------------------------------------------- /docs/source/glm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/glm.rst -------------------------------------------------------------------------------- /docs/source/glm_techn1.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/glm_techn1.rst.TXT -------------------------------------------------------------------------------- /docs/source/glm_techn2.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/glm_techn2.rst.TXT -------------------------------------------------------------------------------- /docs/source/gmm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/gmm.rst -------------------------------------------------------------------------------- /docs/source/gmm_techn1.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/gmm_techn1.rst.TXT -------------------------------------------------------------------------------- /docs/source/graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/graphics.rst -------------------------------------------------------------------------------- /docs/source/images/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/aw.png -------------------------------------------------------------------------------- /docs/source/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/favicon.ico -------------------------------------------------------------------------------- /docs/source/images/hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/hl.png -------------------------------------------------------------------------------- /docs/source/images/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/ht.png -------------------------------------------------------------------------------- /docs/source/images/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/ls.png -------------------------------------------------------------------------------- /docs/source/images/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/re.png -------------------------------------------------------------------------------- /docs/source/images/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/tk.png -------------------------------------------------------------------------------- /docs/source/images/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/images/tm.png -------------------------------------------------------------------------------- /docs/source/imputation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/imputation.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/iolib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/iolib.rst -------------------------------------------------------------------------------- /docs/source/large_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/large_data.rst -------------------------------------------------------------------------------- /docs/source/miscmodels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/miscmodels.rst -------------------------------------------------------------------------------- /docs/source/missing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/missing.rst -------------------------------------------------------------------------------- /docs/source/mixed_glm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/mixed_glm.rst -------------------------------------------------------------------------------- /docs/source/mixed_linear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/mixed_linear.rst -------------------------------------------------------------------------------- /docs/source/multivariate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/multivariate.rst -------------------------------------------------------------------------------- /docs/source/names_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/names_wordlist.txt -------------------------------------------------------------------------------- /docs/source/nonparametric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/nonparametric.rst -------------------------------------------------------------------------------- /docs/source/optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/optimization.rst -------------------------------------------------------------------------------- /docs/source/pitfalls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/pitfalls.rst -------------------------------------------------------------------------------- /docs/source/plots/arma_predict_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/arma_predict_plot.py -------------------------------------------------------------------------------- /docs/source/plots/bkf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/bkf_plot.py -------------------------------------------------------------------------------- /docs/source/plots/cff_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/cff_plot.py -------------------------------------------------------------------------------- /docs/source/plots/graphics_plot_fit_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/graphics_plot_fit_ex.py -------------------------------------------------------------------------------- /docs/source/plots/hpf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/hpf_plot.py -------------------------------------------------------------------------------- /docs/source/plots/load_macrodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/load_macrodata.py -------------------------------------------------------------------------------- /docs/source/plots/mice_example_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/mice_example_1.txt -------------------------------------------------------------------------------- /docs/source/plots/stl_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/stl_plot.py -------------------------------------------------------------------------------- /docs/source/plots/var_plot_acorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plot_acorr.py -------------------------------------------------------------------------------- /docs/source/plots/var_plot_fevd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plot_fevd.py -------------------------------------------------------------------------------- /docs/source/plots/var_plot_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plot_forecast.py -------------------------------------------------------------------------------- /docs/source/plots/var_plot_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plot_input.py -------------------------------------------------------------------------------- /docs/source/plots/var_plot_irf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plot_irf.py -------------------------------------------------------------------------------- /docs/source/plots/var_plot_irf_cum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plot_irf_cum.py -------------------------------------------------------------------------------- /docs/source/plots/var_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/plots/var_plots.py -------------------------------------------------------------------------------- /docs/source/regression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/regression.rst -------------------------------------------------------------------------------- /docs/source/regression_techn1.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/regression_techn1.rst.TXT -------------------------------------------------------------------------------- /docs/source/release/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/index.rst -------------------------------------------------------------------------------- /docs/source/release/old_changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/old_changes.rst -------------------------------------------------------------------------------- /docs/source/release/version0.10.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.10.1.rst -------------------------------------------------------------------------------- /docs/source/release/version0.10.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.10.2.rst -------------------------------------------------------------------------------- /docs/source/release/version0.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.10.rst -------------------------------------------------------------------------------- /docs/source/release/version0.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.11.rst -------------------------------------------------------------------------------- /docs/source/release/version0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.5.rst -------------------------------------------------------------------------------- /docs/source/release/version0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.6.rst -------------------------------------------------------------------------------- /docs/source/release/version0.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.7.rst -------------------------------------------------------------------------------- /docs/source/release/version0.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.8.rst -------------------------------------------------------------------------------- /docs/source/release/version0.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/release/version0.9.rst -------------------------------------------------------------------------------- /docs/source/rlm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/rlm.rst -------------------------------------------------------------------------------- /docs/source/rlm_techn1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/rlm_techn1.rst -------------------------------------------------------------------------------- /docs/source/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/sandbox.rst -------------------------------------------------------------------------------- /docs/source/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/source/statespace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/statespace.rst -------------------------------------------------------------------------------- /docs/source/stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/stats.rst -------------------------------------------------------------------------------- /docs/source/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/tools.rst -------------------------------------------------------------------------------- /docs/source/tsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/tsa.rst -------------------------------------------------------------------------------- /docs/source/tsastats.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/tsastats.rst.TXT -------------------------------------------------------------------------------- /docs/source/user-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/user-guide.rst -------------------------------------------------------------------------------- /docs/source/vector_ar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source/vector_ar.rst -------------------------------------------------------------------------------- /docs/source2/_static/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/blogger.png -------------------------------------------------------------------------------- /docs/source2/_static/blogger_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/blogger_sm.png -------------------------------------------------------------------------------- /docs/source2/_static/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/bullet.gif -------------------------------------------------------------------------------- /docs/source2/_static/closelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/closelabel.png -------------------------------------------------------------------------------- /docs/source2/_static/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/examples.css -------------------------------------------------------------------------------- /docs/source2/_static/facebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/facebox.css -------------------------------------------------------------------------------- /docs/source2/_static/facebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/facebox.js -------------------------------------------------------------------------------- /docs/source2/_static/gettingstarted_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/gettingstarted_0.png -------------------------------------------------------------------------------- /docs/source2/_static/images/anova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/anova.png -------------------------------------------------------------------------------- /docs/source2/_static/images/contrasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/contrasts.png -------------------------------------------------------------------------------- /docs/source2/_static/images/gls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/gls.png -------------------------------------------------------------------------------- /docs/source2/_static/images/mixed_lm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/mixed_lm.png -------------------------------------------------------------------------------- /docs/source2/_static/images/ols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/ols.png -------------------------------------------------------------------------------- /docs/source2/_static/images/rlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/rlm.png -------------------------------------------------------------------------------- /docs/source2/_static/images/tsa_arma0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/tsa_arma0.png -------------------------------------------------------------------------------- /docs/source2/_static/images/tsa_arma1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/tsa_arma1.png -------------------------------------------------------------------------------- /docs/source2/_static/images/tsa_dates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/tsa_dates.png -------------------------------------------------------------------------------- /docs/source2/_static/images/wls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/images/wls.png -------------------------------------------------------------------------------- /docs/source2/_static/ipython.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/ipython.min.css -------------------------------------------------------------------------------- /docs/source2/_static/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/loading.gif -------------------------------------------------------------------------------- /docs/source2/_static/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/minus.gif -------------------------------------------------------------------------------- /docs/source2/_static/mktree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/mktree.css -------------------------------------------------------------------------------- /docs/source2/_static/mktree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/mktree.js -------------------------------------------------------------------------------- /docs/source2/_static/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/plus.gif -------------------------------------------------------------------------------- /docs/source2/_static/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/scripts.js -------------------------------------------------------------------------------- /docs/source2/_static/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_static/versions.json -------------------------------------------------------------------------------- /docs/source2/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/_templates/layout.html -------------------------------------------------------------------------------- /docs/source2/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/about.rst -------------------------------------------------------------------------------- /docs/source2/anova.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/anova.rst -------------------------------------------------------------------------------- /docs/source2/api-structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/api-structure.rst -------------------------------------------------------------------------------- /docs/source2/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/api.rst -------------------------------------------------------------------------------- /docs/source2/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/conf.py -------------------------------------------------------------------------------- /docs/source2/contingency_tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/contingency_tables.rst -------------------------------------------------------------------------------- /docs/source2/contrasts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/contrasts.rst -------------------------------------------------------------------------------- /docs/source2/datasets/generated/ccard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/generated/ccard.rst -------------------------------------------------------------------------------- /docs/source2/datasets/generated/co2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/generated/co2.rst -------------------------------------------------------------------------------- /docs/source2/datasets/generated/engel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/generated/engel.rst -------------------------------------------------------------------------------- /docs/source2/datasets/generated/fair.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/generated/fair.rst -------------------------------------------------------------------------------- /docs/source2/datasets/generated/heart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/generated/heart.rst -------------------------------------------------------------------------------- /docs/source2/datasets/generated/nile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/generated/nile.rst -------------------------------------------------------------------------------- /docs/source2/datasets/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/datasets/index.rst -------------------------------------------------------------------------------- /docs/source2/dev/dataset_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/dataset_notes.rst -------------------------------------------------------------------------------- /docs/source2/dev/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/examples.rst -------------------------------------------------------------------------------- /docs/source2/dev/get_involved.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/get_involved.rst -------------------------------------------------------------------------------- /docs/source2/dev/git_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/git_notes.rst -------------------------------------------------------------------------------- /docs/source2/dev/images/git_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/images/git_merge.png -------------------------------------------------------------------------------- /docs/source2/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/index.rst -------------------------------------------------------------------------------- /docs/source2/dev/internal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/internal.rst -------------------------------------------------------------------------------- /docs/source2/dev/maintainer_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/maintainer_notes.rst -------------------------------------------------------------------------------- /docs/source2/dev/naming_conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/naming_conventions.rst -------------------------------------------------------------------------------- /docs/source2/dev/test_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/test_notes.rst -------------------------------------------------------------------------------- /docs/source2/dev/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/dev/testing.rst -------------------------------------------------------------------------------- /docs/source2/diagnostic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/diagnostic.rst -------------------------------------------------------------------------------- /docs/source2/discretemod.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/discretemod.rst -------------------------------------------------------------------------------- /docs/source2/distributions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/distributions.rst -------------------------------------------------------------------------------- /docs/source2/duration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/duration.rst -------------------------------------------------------------------------------- /docs/source2/emplike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/emplike.rst -------------------------------------------------------------------------------- /docs/source2/endog_exog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/endog_exog.rst -------------------------------------------------------------------------------- /docs/source2/example_formulas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/example_formulas.rst -------------------------------------------------------------------------------- /docs/source2/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/examples/README -------------------------------------------------------------------------------- /docs/source2/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/examples/index.rst -------------------------------------------------------------------------------- /docs/source2/examples/landing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/examples/landing.json -------------------------------------------------------------------------------- /docs/source2/extending.rst.TXT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source2/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/faq.rst -------------------------------------------------------------------------------- /docs/source2/gam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/gam.rst -------------------------------------------------------------------------------- /docs/source2/gee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/gee.rst -------------------------------------------------------------------------------- /docs/source2/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/gettingstarted.rst -------------------------------------------------------------------------------- /docs/source2/glm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/glm.rst -------------------------------------------------------------------------------- /docs/source2/glm_techn1.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/glm_techn1.rst.TXT -------------------------------------------------------------------------------- /docs/source2/glm_techn2.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/glm_techn2.rst.TXT -------------------------------------------------------------------------------- /docs/source2/gmm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/gmm.rst -------------------------------------------------------------------------------- /docs/source2/gmm_techn1.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/gmm_techn1.rst.TXT -------------------------------------------------------------------------------- /docs/source2/graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/graphics.rst -------------------------------------------------------------------------------- /docs/source2/images/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/aw.png -------------------------------------------------------------------------------- /docs/source2/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/favicon.ico -------------------------------------------------------------------------------- /docs/source2/images/hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/hl.png -------------------------------------------------------------------------------- /docs/source2/images/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/ht.png -------------------------------------------------------------------------------- /docs/source2/images/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/ls.png -------------------------------------------------------------------------------- /docs/source2/images/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/re.png -------------------------------------------------------------------------------- /docs/source2/images/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/tk.png -------------------------------------------------------------------------------- /docs/source2/images/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/images/tm.png -------------------------------------------------------------------------------- /docs/source2/imputation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/imputation.rst -------------------------------------------------------------------------------- /docs/source2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/index.rst -------------------------------------------------------------------------------- /docs/source2/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/install.rst -------------------------------------------------------------------------------- /docs/source2/iolib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/iolib.rst -------------------------------------------------------------------------------- /docs/source2/large_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/large_data.rst -------------------------------------------------------------------------------- /docs/source2/miscmodels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/miscmodels.rst -------------------------------------------------------------------------------- /docs/source2/missing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/missing.rst -------------------------------------------------------------------------------- /docs/source2/mixed_glm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/mixed_glm.rst -------------------------------------------------------------------------------- /docs/source2/mixed_linear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/mixed_linear.rst -------------------------------------------------------------------------------- /docs/source2/multivariate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/multivariate.rst -------------------------------------------------------------------------------- /docs/source2/names_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/names_wordlist.txt -------------------------------------------------------------------------------- /docs/source2/nonparametric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/nonparametric.rst -------------------------------------------------------------------------------- /docs/source2/optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/optimization.rst -------------------------------------------------------------------------------- /docs/source2/pitfalls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/pitfalls.rst -------------------------------------------------------------------------------- /docs/source2/plots/arma_predict_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/arma_predict_plot.py -------------------------------------------------------------------------------- /docs/source2/plots/bkf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/bkf_plot.py -------------------------------------------------------------------------------- /docs/source2/plots/cff_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/cff_plot.py -------------------------------------------------------------------------------- /docs/source2/plots/hpf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/hpf_plot.py -------------------------------------------------------------------------------- /docs/source2/plots/load_macrodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/load_macrodata.py -------------------------------------------------------------------------------- /docs/source2/plots/mice_example_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/mice_example_1.txt -------------------------------------------------------------------------------- /docs/source2/plots/stl_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/stl_plot.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plot_acorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plot_acorr.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plot_fevd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plot_fevd.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plot_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plot_forecast.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plot_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plot_input.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plot_irf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plot_irf.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plot_irf_cum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plot_irf_cum.py -------------------------------------------------------------------------------- /docs/source2/plots/var_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/plots/var_plots.py -------------------------------------------------------------------------------- /docs/source2/regression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/regression.rst -------------------------------------------------------------------------------- /docs/source2/regression_techn1.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/regression_techn1.rst.TXT -------------------------------------------------------------------------------- /docs/source2/release/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/index.rst -------------------------------------------------------------------------------- /docs/source2/release/old_changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/old_changes.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.10.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.10.1.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.10.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.10.2.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.10.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.11.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.5.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.6.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.7.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.8.rst -------------------------------------------------------------------------------- /docs/source2/release/version0.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/release/version0.9.rst -------------------------------------------------------------------------------- /docs/source2/rlm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/rlm.rst -------------------------------------------------------------------------------- /docs/source2/rlm_techn1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/rlm_techn1.rst -------------------------------------------------------------------------------- /docs/source2/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/sandbox.rst -------------------------------------------------------------------------------- /docs/source2/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/source2/statespace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/statespace.rst -------------------------------------------------------------------------------- /docs/source2/stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/stats.rst -------------------------------------------------------------------------------- /docs/source2/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/tools.rst -------------------------------------------------------------------------------- /docs/source2/tsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/tsa.rst -------------------------------------------------------------------------------- /docs/source2/tsastats.rst.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/tsastats.rst.TXT -------------------------------------------------------------------------------- /docs/source2/user-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/user-guide.rst -------------------------------------------------------------------------------- /docs/source2/vector_ar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/docs/source2/vector_ar.rst -------------------------------------------------------------------------------- /examples/incomplete/arima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/arima.py -------------------------------------------------------------------------------- /examples/incomplete/arma2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/arma2.py -------------------------------------------------------------------------------- /examples/incomplete/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/dates.py -------------------------------------------------------------------------------- /examples/incomplete/glsar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/glsar.py -------------------------------------------------------------------------------- /examples/incomplete/ols_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/ols_table.py -------------------------------------------------------------------------------- /examples/incomplete/ols_tftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/ols_tftest.py -------------------------------------------------------------------------------- /examples/incomplete/wls_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/incomplete/wls_extended.py -------------------------------------------------------------------------------- /examples/notebooks/autoregressions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/autoregressions.ipynb -------------------------------------------------------------------------------- /examples/notebooks/chi2_fitting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/chi2_fitting.ipynb -------------------------------------------------------------------------------- /examples/notebooks/contrasts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/contrasts.ipynb -------------------------------------------------------------------------------- /examples/notebooks/formulas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/formulas.ipynb -------------------------------------------------------------------------------- /examples/notebooks/generic_mle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/generic_mle.ipynb -------------------------------------------------------------------------------- /examples/notebooks/glm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/glm.ipynb -------------------------------------------------------------------------------- /examples/notebooks/glm_formula.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/glm_formula.ipynb -------------------------------------------------------------------------------- /examples/notebooks/glm_weights.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/glm_weights.ipynb -------------------------------------------------------------------------------- /examples/notebooks/gls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/gls.ipynb -------------------------------------------------------------------------------- /examples/notebooks/kernel_density.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/kernel_density.ipynb -------------------------------------------------------------------------------- /examples/notebooks/mixed_lm_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/mixed_lm_example.ipynb -------------------------------------------------------------------------------- /examples/notebooks/ols.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/ols.ipynb -------------------------------------------------------------------------------- /examples/notebooks/plots_boxplots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/plots_boxplots.ipynb -------------------------------------------------------------------------------- /examples/notebooks/predict.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/predict.ipynb -------------------------------------------------------------------------------- /examples/notebooks/recursive_ls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/recursive_ls.ipynb -------------------------------------------------------------------------------- /examples/notebooks/regression_plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/regression_plots.ipynb -------------------------------------------------------------------------------- /examples/notebooks/robust_models_0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/robust_models_0.ipynb -------------------------------------------------------------------------------- /examples/notebooks/robust_models_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/robust_models_1.ipynb -------------------------------------------------------------------------------- /examples/notebooks/rolling_ls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/rolling_ls.ipynb -------------------------------------------------------------------------------- /examples/notebooks/star_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/star_diagram.png -------------------------------------------------------------------------------- /examples/notebooks/tsa_arma_0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/tsa_arma_0.ipynb -------------------------------------------------------------------------------- /examples/notebooks/tsa_arma_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/tsa_arma_1.ipynb -------------------------------------------------------------------------------- /examples/notebooks/tsa_dates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/tsa_dates.ipynb -------------------------------------------------------------------------------- /examples/notebooks/tsa_filters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/tsa_filters.ipynb -------------------------------------------------------------------------------- /examples/notebooks/wls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/notebooks/wls.ipynb -------------------------------------------------------------------------------- /examples/python/chi2_fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/chi2_fitting.py -------------------------------------------------------------------------------- /examples/python/contrasts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/contrasts.py -------------------------------------------------------------------------------- /examples/python/distributed_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/distributed_estimation.py -------------------------------------------------------------------------------- /examples/python/exponential_smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/exponential_smoothing.py -------------------------------------------------------------------------------- /examples/python/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/formulas.py -------------------------------------------------------------------------------- /examples/python/generic_mle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/generic_mle.py -------------------------------------------------------------------------------- /examples/python/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/glm.py -------------------------------------------------------------------------------- /examples/python/glm_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/glm_formula.py -------------------------------------------------------------------------------- /examples/python/glm_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/glm_weights.py -------------------------------------------------------------------------------- /examples/python/gls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/gls.py -------------------------------------------------------------------------------- /examples/python/influence_glm_logit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/influence_glm_logit.py -------------------------------------------------------------------------------- /examples/python/interactions_anova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/interactions_anova.py -------------------------------------------------------------------------------- /examples/python/kernel_density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/kernel_density.py -------------------------------------------------------------------------------- /examples/python/markov_autoregression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/markov_autoregression.py -------------------------------------------------------------------------------- /examples/python/markov_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/markov_regression.py -------------------------------------------------------------------------------- /examples/python/mixed_lm_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/mixed_lm_example.py -------------------------------------------------------------------------------- /examples/python/ols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/ols.py -------------------------------------------------------------------------------- /examples/python/pca_fertility_factors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/pca_fertility_factors.py -------------------------------------------------------------------------------- /examples/python/plots_boxplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/plots_boxplots.py -------------------------------------------------------------------------------- /examples/python/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/predict.py -------------------------------------------------------------------------------- /examples/python/quantile_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/quantile_regression.py -------------------------------------------------------------------------------- /examples/python/recursive_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/recursive_ls.py -------------------------------------------------------------------------------- /examples/python/regression_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/regression_diagnostics.py -------------------------------------------------------------------------------- /examples/python/regression_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/regression_plots.py -------------------------------------------------------------------------------- /examples/python/robust_models_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/robust_models_0.py -------------------------------------------------------------------------------- /examples/python/robust_models_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/robust_models_1.py -------------------------------------------------------------------------------- /examples/python/statespace_arma_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/statespace_arma_0.py -------------------------------------------------------------------------------- /examples/python/statespace_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/statespace_cycles.py -------------------------------------------------------------------------------- /examples/python/statespace_seasonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/statespace_seasonal.py -------------------------------------------------------------------------------- /examples/python/statespace_varmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/statespace_varmax.py -------------------------------------------------------------------------------- /examples/python/tsa_arma_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/tsa_arma_0.py -------------------------------------------------------------------------------- /examples/python/tsa_arma_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/tsa_arma_1.py -------------------------------------------------------------------------------- /examples/python/tsa_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/tsa_dates.py -------------------------------------------------------------------------------- /examples/python/tsa_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/tsa_filters.py -------------------------------------------------------------------------------- /examples/python/wls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/python/wls.py -------------------------------------------------------------------------------- /examples/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/examples/run_all.py -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/lint.sh -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/setup.py -------------------------------------------------------------------------------- /statsmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/__init__.py -------------------------------------------------------------------------------- /statsmodels/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/_version.py -------------------------------------------------------------------------------- /statsmodels/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/api.py -------------------------------------------------------------------------------- /statsmodels/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/__init__.py -------------------------------------------------------------------------------- /statsmodels/base/_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/_constraints.py -------------------------------------------------------------------------------- /statsmodels/base/_parameter_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/_parameter_inference.py -------------------------------------------------------------------------------- /statsmodels/base/_penalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/_penalized.py -------------------------------------------------------------------------------- /statsmodels/base/_penalties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/_penalties.py -------------------------------------------------------------------------------- /statsmodels/base/_screening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/_screening.py -------------------------------------------------------------------------------- /statsmodels/base/covtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/covtype.py -------------------------------------------------------------------------------- /statsmodels/base/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/data.py -------------------------------------------------------------------------------- /statsmodels/base/elastic_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/elastic_net.py -------------------------------------------------------------------------------- /statsmodels/base/l1_cvxopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/l1_cvxopt.py -------------------------------------------------------------------------------- /statsmodels/base/l1_slsqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/l1_slsqp.py -------------------------------------------------------------------------------- /statsmodels/base/l1_solvers_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/l1_solvers_common.py -------------------------------------------------------------------------------- /statsmodels/base/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/model.py -------------------------------------------------------------------------------- /statsmodels/base/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/optimizer.py -------------------------------------------------------------------------------- /statsmodels/base/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/base/tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_data.py -------------------------------------------------------------------------------- /statsmodels/base/tests/test_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_optimize.py -------------------------------------------------------------------------------- /statsmodels/base/tests/test_penalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_penalized.py -------------------------------------------------------------------------------- /statsmodels/base/tests/test_penalties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_penalties.py -------------------------------------------------------------------------------- /statsmodels/base/tests/test_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_predict.py -------------------------------------------------------------------------------- /statsmodels/base/tests/test_screening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_screening.py -------------------------------------------------------------------------------- /statsmodels/base/tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/tests/test_transform.py -------------------------------------------------------------------------------- /statsmodels/base/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/transform.py -------------------------------------------------------------------------------- /statsmodels/base/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/base/wrapper.py -------------------------------------------------------------------------------- /statsmodels/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/compat/__init__.py -------------------------------------------------------------------------------- /statsmodels/compat/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/compat/numpy.py -------------------------------------------------------------------------------- /statsmodels/compat/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/compat/pandas.py -------------------------------------------------------------------------------- /statsmodels/compat/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/compat/platform.py -------------------------------------------------------------------------------- /statsmodels/compat/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/compat/python.py -------------------------------------------------------------------------------- /statsmodels/compat/scipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/compat/scipy.py -------------------------------------------------------------------------------- /statsmodels/compat/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/conftest.py -------------------------------------------------------------------------------- /statsmodels/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/anes96/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/anes96/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/anes96/anes96.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/anes96/anes96.csv -------------------------------------------------------------------------------- /statsmodels/datasets/anes96/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/anes96/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/cancer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cancer/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/cancer/cancer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cancer/cancer.csv -------------------------------------------------------------------------------- /statsmodels/datasets/cancer/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cancer/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/ccard/R_wls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/ccard/R_wls.s -------------------------------------------------------------------------------- /statsmodels/datasets/ccard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/ccard/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/ccard/ccard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/ccard/ccard.csv -------------------------------------------------------------------------------- /statsmodels/datasets/ccard/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/ccard/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/ccard/src/ccard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/ccard/src/ccard.csv -------------------------------------------------------------------------------- /statsmodels/datasets/ccard/src/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/ccard/src/names.txt -------------------------------------------------------------------------------- /statsmodels/datasets/co2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/co2/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/co2/co2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/co2/co2.csv -------------------------------------------------------------------------------- /statsmodels/datasets/co2/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/co2/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/committee/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/committee/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/copper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/copper/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/copper/copper.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/copper/copper.csv -------------------------------------------------------------------------------- /statsmodels/datasets/copper/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/copper/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/cpunish/R_cpunish.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cpunish/R_cpunish.s -------------------------------------------------------------------------------- /statsmodels/datasets/cpunish/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cpunish/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/cpunish/cpunish.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cpunish/cpunish.csv -------------------------------------------------------------------------------- /statsmodels/datasets/cpunish/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/cpunish/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/elec_equip/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/elec_equip/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/elnino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/elnino/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/elnino/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/elnino/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/elnino/elnino.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/elnino/elnino.csv -------------------------------------------------------------------------------- /statsmodels/datasets/engel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/engel/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/engel/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/engel/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/engel/engel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/engel/engel.csv -------------------------------------------------------------------------------- /statsmodels/datasets/fair/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/fair/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/fair/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/fair/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/fair/fair.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/fair/fair.csv -------------------------------------------------------------------------------- /statsmodels/datasets/fair/fair_pt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/fair/fair_pt.csv -------------------------------------------------------------------------------- /statsmodels/datasets/fertility/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/fertility/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/grunfeld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/grunfeld/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/grunfeld/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/grunfeld/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/heart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/heart/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/heart/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/heart/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/heart/heart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/heart/heart.csv -------------------------------------------------------------------------------- /statsmodels/datasets/longley/R_gls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/longley/R_gls.s -------------------------------------------------------------------------------- /statsmodels/datasets/longley/R_lm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/longley/R_lm.s -------------------------------------------------------------------------------- /statsmodels/datasets/longley/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/longley/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/longley/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/longley/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/longley/longley.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/longley/longley.csv -------------------------------------------------------------------------------- /statsmodels/datasets/macrodata/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/macrodata/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/modechoice/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/modechoice/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/nile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/nile/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/nile/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/nile/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/nile/nile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/nile/nile.csv -------------------------------------------------------------------------------- /statsmodels/datasets/randhie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/randhie/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/randhie/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/randhie/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/randhie/randhie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/randhie/randhie.csv -------------------------------------------------------------------------------- /statsmodels/datasets/scotland/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/scotland/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/scotland/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/scotland/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/spector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/spector/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/spector/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/spector/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/spector/spector.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/spector/spector.csv -------------------------------------------------------------------------------- /statsmodels/datasets/stackloss/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/stackloss/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/star98/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/star98/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/star98/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/star98/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/star98/r_glm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/star98/r_glm.s -------------------------------------------------------------------------------- /statsmodels/datasets/star98/star98.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/star98/star98.csv -------------------------------------------------------------------------------- /statsmodels/datasets/statecrime/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/statecrime/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/strikes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/strikes/__init__.py -------------------------------------------------------------------------------- /statsmodels/datasets/strikes/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/strikes/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/strikes/strikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/strikes/strikes.csv -------------------------------------------------------------------------------- /statsmodels/datasets/sunspots/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/sunspots/data.py -------------------------------------------------------------------------------- /statsmodels/datasets/template_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/template_data.py -------------------------------------------------------------------------------- /statsmodels/datasets/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/datasets/utils.py -------------------------------------------------------------------------------- /statsmodels/discrete/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/discrete/__init__.py -------------------------------------------------------------------------------- /statsmodels/discrete/count_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/discrete/count_model.py -------------------------------------------------------------------------------- /statsmodels/discrete/discrete_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/discrete/discrete_model.py -------------------------------------------------------------------------------- /statsmodels/discrete/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/discrete/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/distributions/__init__.py -------------------------------------------------------------------------------- /statsmodels/distributions/discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/distributions/discrete.py -------------------------------------------------------------------------------- /statsmodels/distributions/edgeworth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/distributions/edgeworth.py -------------------------------------------------------------------------------- /statsmodels/distributions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/duration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/duration/__init__.py -------------------------------------------------------------------------------- /statsmodels/duration/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/duration/api.py -------------------------------------------------------------------------------- /statsmodels/duration/survfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/duration/survfunc.py -------------------------------------------------------------------------------- /statsmodels/duration/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/duration/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/emplike/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/__init__.py -------------------------------------------------------------------------------- /statsmodels/emplike/aft_el.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/aft_el.py -------------------------------------------------------------------------------- /statsmodels/emplike/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/api.py -------------------------------------------------------------------------------- /statsmodels/emplike/descriptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/descriptive.py -------------------------------------------------------------------------------- /statsmodels/emplike/elanova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/elanova.py -------------------------------------------------------------------------------- /statsmodels/emplike/elregress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/elregress.py -------------------------------------------------------------------------------- /statsmodels/emplike/originregress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/originregress.py -------------------------------------------------------------------------------- /statsmodels/emplike/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/emplike/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | # Init for results 2 | -------------------------------------------------------------------------------- /statsmodels/emplike/tests/test_aft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/emplike/tests/test_aft.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_arch_canada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_arch_canada.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_emplike_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_emplike_1.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_emplike_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_emplike_2.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_emplike_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_emplike_3.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_generic_mle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_generic_mle.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_inter_rater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_inter_rater.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_kde_confint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_kde_confint.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_lowess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_lowess.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_misc_tarma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_misc_tarma.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_misc_tmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_misc_tmodel.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_pandas.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_pareto_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_pareto_plot.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_proportion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_proportion.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_rootfinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_rootfinding.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_sandwich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_sandwich.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_sandwich2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_sandwich2.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_sandwich3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_sandwich3.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_univar_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_univar_kde.py -------------------------------------------------------------------------------- /statsmodels/examples/ex_wald_anova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/ex_wald_anova.py -------------------------------------------------------------------------------- /statsmodels/examples/example_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/example_kde.py -------------------------------------------------------------------------------- /statsmodels/examples/example_rpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/example_rpy.py -------------------------------------------------------------------------------- /statsmodels/examples/koul_and_mc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/koul_and_mc.py -------------------------------------------------------------------------------- /statsmodels/examples/l1_demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/l1_demo/demo.py -------------------------------------------------------------------------------- /statsmodels/examples/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/run_all.py -------------------------------------------------------------------------------- /statsmodels/examples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/examples/try_2regress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/try_2regress.py -------------------------------------------------------------------------------- /statsmodels/examples/try_gee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/try_gee.py -------------------------------------------------------------------------------- /statsmodels/examples/try_polytrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/try_polytrend.py -------------------------------------------------------------------------------- /statsmodels/examples/try_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/try_power.py -------------------------------------------------------------------------------- /statsmodels/examples/try_power2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/try_power2.py -------------------------------------------------------------------------------- /statsmodels/examples/try_tukey_hsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/try_tukey_hsd.py -------------------------------------------------------------------------------- /statsmodels/examples/tsa/arma_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/tsa/arma_plots.py -------------------------------------------------------------------------------- /statsmodels/examples/tsa/ex_coint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/tsa/ex_coint.py -------------------------------------------------------------------------------- /statsmodels/examples/tsa/ex_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/tsa/ex_var.py -------------------------------------------------------------------------------- /statsmodels/examples/tsa/try_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/tsa/try_ar.py -------------------------------------------------------------------------------- /statsmodels/examples/tut_ols_ancova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/examples/tut_ols_ancova.py -------------------------------------------------------------------------------- /statsmodels/formula/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/formula/__init__.py -------------------------------------------------------------------------------- /statsmodels/formula/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/formula/api.py -------------------------------------------------------------------------------- /statsmodels/formula/formulatools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/formula/formulatools.py -------------------------------------------------------------------------------- /statsmodels/formula/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/gam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/gam/__init__.py -------------------------------------------------------------------------------- /statsmodels/gam/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/gam/api.py -------------------------------------------------------------------------------- /statsmodels/gam/gam_penalties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/gam/gam_penalties.py -------------------------------------------------------------------------------- /statsmodels/gam/smooth_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/gam/smooth_basis.py -------------------------------------------------------------------------------- /statsmodels/gam/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/gam/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/gam/tests/test_gam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/gam/tests/test_gam.py -------------------------------------------------------------------------------- /statsmodels/genmod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/__init__.py -------------------------------------------------------------------------------- /statsmodels/genmod/_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/_prediction.py -------------------------------------------------------------------------------- /statsmodels/genmod/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/api.py -------------------------------------------------------------------------------- /statsmodels/genmod/bayes_mixed_glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/bayes_mixed_glm.py -------------------------------------------------------------------------------- /statsmodels/genmod/cov_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/cov_struct.py -------------------------------------------------------------------------------- /statsmodels/genmod/families/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/families/family.py -------------------------------------------------------------------------------- /statsmodels/genmod/families/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/families/links.py -------------------------------------------------------------------------------- /statsmodels/genmod/families/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/genmod/qif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/qif.py -------------------------------------------------------------------------------- /statsmodels/genmod/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/genmod/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/genmod/tests/test_gee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/tests/test_gee.py -------------------------------------------------------------------------------- /statsmodels/genmod/tests/test_glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/tests/test_glm.py -------------------------------------------------------------------------------- /statsmodels/genmod/tests/test_qif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/genmod/tests/test_qif.py -------------------------------------------------------------------------------- /statsmodels/graphics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/__init__.py -------------------------------------------------------------------------------- /statsmodels/graphics/agreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/agreement.py -------------------------------------------------------------------------------- /statsmodels/graphics/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/api.py -------------------------------------------------------------------------------- /statsmodels/graphics/boxplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/boxplots.py -------------------------------------------------------------------------------- /statsmodels/graphics/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/correlation.py -------------------------------------------------------------------------------- /statsmodels/graphics/dotplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/dotplots.py -------------------------------------------------------------------------------- /statsmodels/graphics/factorplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/factorplots.py -------------------------------------------------------------------------------- /statsmodels/graphics/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/functional.py -------------------------------------------------------------------------------- /statsmodels/graphics/gofplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/gofplots.py -------------------------------------------------------------------------------- /statsmodels/graphics/mosaicplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/mosaicplot.py -------------------------------------------------------------------------------- /statsmodels/graphics/plot_grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/plot_grids.py -------------------------------------------------------------------------------- /statsmodels/graphics/plottools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/plottools.py -------------------------------------------------------------------------------- /statsmodels/graphics/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/graphics/tsaplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/tsaplots.py -------------------------------------------------------------------------------- /statsmodels/graphics/tukeyplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/tukeyplot.py -------------------------------------------------------------------------------- /statsmodels/graphics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/graphics/utils.py -------------------------------------------------------------------------------- /statsmodels/imputation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/imputation/__init__.py -------------------------------------------------------------------------------- /statsmodels/imputation/bayes_mi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/imputation/bayes_mi.py -------------------------------------------------------------------------------- /statsmodels/imputation/mice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/imputation/mice.py -------------------------------------------------------------------------------- /statsmodels/imputation/ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/imputation/ros.py -------------------------------------------------------------------------------- /statsmodels/imputation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/iolib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/__init__.py -------------------------------------------------------------------------------- /statsmodels/iolib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/api.py -------------------------------------------------------------------------------- /statsmodels/iolib/foreign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/foreign.py -------------------------------------------------------------------------------- /statsmodels/iolib/openfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/openfile.py -------------------------------------------------------------------------------- /statsmodels/iolib/smpickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/smpickle.py -------------------------------------------------------------------------------- /statsmodels/iolib/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/summary.py -------------------------------------------------------------------------------- /statsmodels/iolib/summary2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/summary2.py -------------------------------------------------------------------------------- /statsmodels/iolib/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/table.py -------------------------------------------------------------------------------- /statsmodels/iolib/tableformatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/tableformatting.py -------------------------------------------------------------------------------- /statsmodels/iolib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/iolib/tests/gen_dates.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/tests/gen_dates.do -------------------------------------------------------------------------------- /statsmodels/iolib/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/iolib/tests/test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/tests/test_data.csv -------------------------------------------------------------------------------- /statsmodels/iolib/tests/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/tests/test_pickle.py -------------------------------------------------------------------------------- /statsmodels/iolib/tests/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/iolib/tests/test_table.py -------------------------------------------------------------------------------- /statsmodels/miscmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/miscmodels/__init__.py -------------------------------------------------------------------------------- /statsmodels/miscmodels/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/miscmodels/api.py -------------------------------------------------------------------------------- /statsmodels/miscmodels/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/miscmodels/count.py -------------------------------------------------------------------------------- /statsmodels/miscmodels/nonlinls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/miscmodels/nonlinls.py -------------------------------------------------------------------------------- /statsmodels/miscmodels/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/miscmodels/tmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/miscmodels/tmodel.py -------------------------------------------------------------------------------- /statsmodels/miscmodels/try_mlecov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/miscmodels/try_mlecov.py -------------------------------------------------------------------------------- /statsmodels/multivariate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/__init__.py -------------------------------------------------------------------------------- /statsmodels/multivariate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/api.py -------------------------------------------------------------------------------- /statsmodels/multivariate/cancorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/cancorr.py -------------------------------------------------------------------------------- /statsmodels/multivariate/factor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/factor.py -------------------------------------------------------------------------------- /statsmodels/multivariate/factor_rotation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/multivariate/manova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/manova.py -------------------------------------------------------------------------------- /statsmodels/multivariate/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/pca.py -------------------------------------------------------------------------------- /statsmodels/multivariate/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/multivariate/plots.py -------------------------------------------------------------------------------- /statsmodels/multivariate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/multivariate/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/nonparametric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/nonparametric/__init__.py -------------------------------------------------------------------------------- /statsmodels/nonparametric/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/nonparametric/api.py -------------------------------------------------------------------------------- /statsmodels/nonparametric/kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/nonparametric/kde.py -------------------------------------------------------------------------------- /statsmodels/nonparametric/kdetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/nonparametric/kdetools.py -------------------------------------------------------------------------------- /statsmodels/nonparametric/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/nonparametric/kernels.py -------------------------------------------------------------------------------- /statsmodels/nonparametric/linbin.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/nonparametric/linbin.pyx -------------------------------------------------------------------------------- /statsmodels/nonparametric/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/nonparametric/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/__init__.py -------------------------------------------------------------------------------- /statsmodels/regression/_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/_prediction.py -------------------------------------------------------------------------------- /statsmodels/regression/_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/_tools.py -------------------------------------------------------------------------------- /statsmodels/regression/dimred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/dimred.py -------------------------------------------------------------------------------- /statsmodels/regression/feasible_gls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/feasible_gls.py -------------------------------------------------------------------------------- /statsmodels/regression/linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/linear_model.py -------------------------------------------------------------------------------- /statsmodels/regression/recursive_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/recursive_ls.py -------------------------------------------------------------------------------- /statsmodels/regression/rolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/regression/rolling.py -------------------------------------------------------------------------------- /statsmodels/regression/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/regression/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/resampling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/robust/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/robust/__init__.py -------------------------------------------------------------------------------- /statsmodels/robust/norms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/robust/norms.py -------------------------------------------------------------------------------- /statsmodels/robust/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/robust/scale.py -------------------------------------------------------------------------------- /statsmodels/robust/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/robust/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/robust/tests/test_rlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/robust/tests/test_rlm.py -------------------------------------------------------------------------------- /statsmodels/robust/tests/test_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/robust/tests/test_scale.py -------------------------------------------------------------------------------- /statsmodels/sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/__init__.py -------------------------------------------------------------------------------- /statsmodels/sandbox/archive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/archive/tsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/archive/tsa.py -------------------------------------------------------------------------------- /statsmodels/sandbox/bspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/bspline.py -------------------------------------------------------------------------------- /statsmodels/sandbox/descstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/descstats.py -------------------------------------------------------------------------------- /statsmodels/sandbox/distributions/examples/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /statsmodels/sandbox/distributions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/gam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/gam.py -------------------------------------------------------------------------------- /statsmodels/sandbox/infotheo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/infotheo.py -------------------------------------------------------------------------------- /statsmodels/sandbox/mcevaluate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/mcevaluate/arma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/mcevaluate/arma.py -------------------------------------------------------------------------------- /statsmodels/sandbox/mle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/mle.py -------------------------------------------------------------------------------- /statsmodels/sandbox/mlogitmath.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/mlogitmath.lyx -------------------------------------------------------------------------------- /statsmodels/sandbox/multilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/multilinear.py -------------------------------------------------------------------------------- /statsmodels/sandbox/nonparametric/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /statsmodels/sandbox/nonparametric/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/nos4.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/nos4.mtx -------------------------------------------------------------------------------- /statsmodels/sandbox/panel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/panel/mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/panel/mixed.py -------------------------------------------------------------------------------- /statsmodels/sandbox/panel/panelmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/panel/panelmod.py -------------------------------------------------------------------------------- /statsmodels/sandbox/panel/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/pca.py -------------------------------------------------------------------------------- /statsmodels/sandbox/regression/gmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/regression/gmm.py -------------------------------------------------------------------------------- /statsmodels/sandbox/regression/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/rls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/rls.py -------------------------------------------------------------------------------- /statsmodels/sandbox/rlsdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/rlsdata.txt -------------------------------------------------------------------------------- /statsmodels/sandbox/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/stats/__init__.py -------------------------------------------------------------------------------- /statsmodels/sandbox/stats/multicomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/stats/multicomp.py -------------------------------------------------------------------------------- /statsmodels/sandbox/stats/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/stats/runs.py -------------------------------------------------------------------------------- /statsmodels/sandbox/stats/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/sysreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/sysreg.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/sandbox/tests/macrodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tests/macrodata.s -------------------------------------------------------------------------------- /statsmodels/sandbox/tests/savervs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tests/savervs.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tests/sysreg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tests/sysreg.s -------------------------------------------------------------------------------- /statsmodels/sandbox/tests/test_gam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tests/test_gam.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tests/test_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tests/test_pca.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tools/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tools/TODO.txt -------------------------------------------------------------------------------- /statsmodels/sandbox/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tools/__init__.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tools/cross_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tools/cross_val.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tools/mctools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tools/mctools.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tools/tools_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tools/tools_pca.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/__init__.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/diffusion.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/diffusion2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/diffusion2.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/fftarma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/fftarma.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/movstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/movstat.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/try_fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/try_fi.py -------------------------------------------------------------------------------- /statsmodels/sandbox/tsa/varma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/sandbox/tsa/varma.py -------------------------------------------------------------------------------- /statsmodels/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/src/blas_lapack.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/src/blas_lapack.pxd -------------------------------------------------------------------------------- /statsmodels/src/capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/src/capsule.h -------------------------------------------------------------------------------- /statsmodels/src/math.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/src/math.pxd -------------------------------------------------------------------------------- /statsmodels/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/__init__.py -------------------------------------------------------------------------------- /statsmodels/stats/_adnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/_adnorm.py -------------------------------------------------------------------------------- /statsmodels/stats/_diagnostic_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/_diagnostic_other.py -------------------------------------------------------------------------------- /statsmodels/stats/_knockoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/_knockoff.py -------------------------------------------------------------------------------- /statsmodels/stats/_lilliefors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/_lilliefors.py -------------------------------------------------------------------------------- /statsmodels/stats/anova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/anova.py -------------------------------------------------------------------------------- /statsmodels/stats/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/api.py -------------------------------------------------------------------------------- /statsmodels/stats/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/base.py -------------------------------------------------------------------------------- /statsmodels/stats/contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/contrast.py -------------------------------------------------------------------------------- /statsmodels/stats/correlation_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/correlation_tools.py -------------------------------------------------------------------------------- /statsmodels/stats/descriptivestats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/descriptivestats.py -------------------------------------------------------------------------------- /statsmodels/stats/diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/diagnostic.py -------------------------------------------------------------------------------- /statsmodels/stats/gof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/gof.py -------------------------------------------------------------------------------- /statsmodels/stats/inter_rater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/inter_rater.py -------------------------------------------------------------------------------- /statsmodels/stats/libqsturng/CH.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/libqsturng/CH.r -------------------------------------------------------------------------------- /statsmodels/stats/libqsturng/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/stats/mediation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/mediation.py -------------------------------------------------------------------------------- /statsmodels/stats/moment_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/moment_helpers.py -------------------------------------------------------------------------------- /statsmodels/stats/multicomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/multicomp.py -------------------------------------------------------------------------------- /statsmodels/stats/multitest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/multitest.py -------------------------------------------------------------------------------- /statsmodels/stats/oaxaca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/oaxaca.py -------------------------------------------------------------------------------- /statsmodels/stats/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/power.py -------------------------------------------------------------------------------- /statsmodels/stats/proportion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/proportion.py -------------------------------------------------------------------------------- /statsmodels/stats/stattools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/stattools.py -------------------------------------------------------------------------------- /statsmodels/stats/tabledist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tabledist.py -------------------------------------------------------------------------------- /statsmodels/stats/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/stats/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_anova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_anova.py -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_data.txt -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_gof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_gof.py -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_multi.py -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_oaxaca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_oaxaca.py -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_power.py -------------------------------------------------------------------------------- /statsmodels/stats/tests/test_tost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/tests/test_tost.py -------------------------------------------------------------------------------- /statsmodels/stats/weightstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/stats/weightstats.py -------------------------------------------------------------------------------- /statsmodels/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests for the package behavior of statsmodels 2 | -------------------------------------------------------------------------------- /statsmodels/tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tests/test_package.py -------------------------------------------------------------------------------- /statsmodels/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/__init__.py -------------------------------------------------------------------------------- /statsmodels/tools/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/_testing.py -------------------------------------------------------------------------------- /statsmodels/tools/catadd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/catadd.py -------------------------------------------------------------------------------- /statsmodels/tools/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/data.py -------------------------------------------------------------------------------- /statsmodels/tools/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/decorators.py -------------------------------------------------------------------------------- /statsmodels/tools/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/docstring.py -------------------------------------------------------------------------------- /statsmodels/tools/eval_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/eval_measures.py -------------------------------------------------------------------------------- /statsmodels/tools/grouputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/grouputils.py -------------------------------------------------------------------------------- /statsmodels/tools/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/linalg.py -------------------------------------------------------------------------------- /statsmodels/tools/numdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/numdiff.py -------------------------------------------------------------------------------- /statsmodels/tools/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/parallel.py -------------------------------------------------------------------------------- /statsmodels/tools/print_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/print_version.py -------------------------------------------------------------------------------- /statsmodels/tools/rootfinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/rootfinding.py -------------------------------------------------------------------------------- /statsmodels/tools/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/sequences.py -------------------------------------------------------------------------------- /statsmodels/tools/sm_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/sm_exceptions.py -------------------------------------------------------------------------------- /statsmodels/tools/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/testing.py -------------------------------------------------------------------------------- /statsmodels/tools/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tools/tests/test_catadd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/tests/test_catadd.py -------------------------------------------------------------------------------- /statsmodels/tools/tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/tests/test_data.py -------------------------------------------------------------------------------- /statsmodels/tools/tests/test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/tests/test_linalg.py -------------------------------------------------------------------------------- /statsmodels/tools/tests/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/tests/test_tools.py -------------------------------------------------------------------------------- /statsmodels/tools/tests/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/tests/test_web.py -------------------------------------------------------------------------------- /statsmodels/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/tools.py -------------------------------------------------------------------------------- /statsmodels/tools/transform_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/transform_model.py -------------------------------------------------------------------------------- /statsmodels/tools/validation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tools/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tools/web.py -------------------------------------------------------------------------------- /statsmodels/tsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/_bds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/_bds.py -------------------------------------------------------------------------------- /statsmodels/tsa/_innovations.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/_innovations.pyx -------------------------------------------------------------------------------- /statsmodels/tsa/_stl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/_stl.pyx -------------------------------------------------------------------------------- /statsmodels/tsa/adfvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/adfvalues.py -------------------------------------------------------------------------------- /statsmodels/tsa/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/api.py -------------------------------------------------------------------------------- /statsmodels/tsa/ar_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/ar_model.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/arima/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima/api.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/arima/datasets/brockwell_davis_2002/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/arima/estimators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/arima/estimators/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/arima/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima/model.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima/params.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima/specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima/specification.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/arima/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima/tools.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima_model.py -------------------------------------------------------------------------------- /statsmodels/tsa/arima_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arima_process.py -------------------------------------------------------------------------------- /statsmodels/tsa/arma_mle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/arma_mle.py -------------------------------------------------------------------------------- /statsmodels/tsa/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/base/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/base/datetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/base/datetools.py -------------------------------------------------------------------------------- /statsmodels/tsa/base/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/base/tsa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/base/tsa_model.py -------------------------------------------------------------------------------- /statsmodels/tsa/coint_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/coint_tables.py -------------------------------------------------------------------------------- /statsmodels/tsa/descriptivestats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/descriptivestats.py -------------------------------------------------------------------------------- /statsmodels/tsa/exponential_smoothing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/_utils.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/api.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/bk_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/bk_filter.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/cf_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/cf_filter.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/filtertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/filtertools.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/hp_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/filters/hp_filter.py -------------------------------------------------------------------------------- /statsmodels/tsa/filters/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/filters/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/holtwinters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/holtwinters.py -------------------------------------------------------------------------------- /statsmodels/tsa/innovations/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/innovations/api.py -------------------------------------------------------------------------------- /statsmodels/tsa/innovations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/interp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/interp/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/interp/denton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/interp/denton.py -------------------------------------------------------------------------------- /statsmodels/tsa/interp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/kalmanf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/kalmanf/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/mlemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/mlemodel.py -------------------------------------------------------------------------------- /statsmodels/tsa/regime_switching/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/regime_switching/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/seasonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/seasonal.py -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/_smoothers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/_tools.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/_tools.pxd -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/api.py -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/mlemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/mlemodel.py -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/sarimax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/sarimax.py -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/tools.py -------------------------------------------------------------------------------- /statsmodels/tsa/statespace/varmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/statespace/varmax.py -------------------------------------------------------------------------------- /statsmodels/tsa/stattools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/stattools.py -------------------------------------------------------------------------------- /statsmodels/tsa/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/tests/arima.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/arima.do -------------------------------------------------------------------------------- /statsmodels/tsa/tests/arima112.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/arima112.do -------------------------------------------------------------------------------- /statsmodels/tsa/tests/arima211.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/arima211.do -------------------------------------------------------------------------------- /statsmodels/tsa/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/tests/results/arima.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/results/arima.R -------------------------------------------------------------------------------- /statsmodels/tsa/tests/results/rgnp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/results/rgnp.csv -------------------------------------------------------------------------------- /statsmodels/tsa/tests/results/stl_co2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/results/stl_co2 -------------------------------------------------------------------------------- /statsmodels/tsa/tests/test_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/test_ar.py -------------------------------------------------------------------------------- /statsmodels/tsa/tests/test_arima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/test_arima.py -------------------------------------------------------------------------------- /statsmodels/tsa/tests/test_bds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/test_bds.py -------------------------------------------------------------------------------- /statsmodels/tsa/tests/test_seasonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/test_seasonal.py -------------------------------------------------------------------------------- /statsmodels/tsa/tests/test_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/test_stl.py -------------------------------------------------------------------------------- /statsmodels/tsa/tests/test_x13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tests/test_x13.py -------------------------------------------------------------------------------- /statsmodels/tsa/tsatools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/tsatools.py -------------------------------------------------------------------------------- /statsmodels/tsa/varma_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/varma_process.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/__init__.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/api.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/irf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/irf.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/output.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/plotting.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/tests/JMulTi_results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/tests/Matlab_results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/tests/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/tests/var.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/tests/var.R -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/util.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/var_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/var_model.py -------------------------------------------------------------------------------- /statsmodels/tsa/vector_ar/vecm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/vector_ar/vecm.py -------------------------------------------------------------------------------- /statsmodels/tsa/x13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/statsmodels/tsa/x13.py -------------------------------------------------------------------------------- /tools/R2nparray/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/R2nparray/DESCRIPTION -------------------------------------------------------------------------------- /tools/R2nparray/NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern( "." ) 2 | -------------------------------------------------------------------------------- /tools/R2nparray/R/R2nparray-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/R2nparray/R/R2nparray-package.R -------------------------------------------------------------------------------- /tools/R2nparray/R/R2nparray.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/R2nparray/R/R2nparray.R -------------------------------------------------------------------------------- /tools/R2nparray/R/ex_sur.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/R2nparray/R/ex_sur.R -------------------------------------------------------------------------------- /tools/R2nparray/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/R2nparray/README.txt -------------------------------------------------------------------------------- /tools/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/README.rst -------------------------------------------------------------------------------- /tools/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/README.md -------------------------------------------------------------------------------- /tools/ci/appveyor_conda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/appveyor_conda.bat -------------------------------------------------------------------------------- /tools/ci/appveyor_pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/appveyor_pip.bat -------------------------------------------------------------------------------- /tools/ci/azure_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/azure_template.yml -------------------------------------------------------------------------------- /tools/ci/docbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/docbuild.sh -------------------------------------------------------------------------------- /tools/ci/docbuild_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/docbuild_install.sh -------------------------------------------------------------------------------- /tools/ci/run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/run_test.bat -------------------------------------------------------------------------------- /tools/ci/travis_conda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/travis_conda.sh -------------------------------------------------------------------------------- /tools/ci/travis_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/ci/travis_pip.sh -------------------------------------------------------------------------------- /tools/dataset_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/dataset_rst.py -------------------------------------------------------------------------------- /tools/estmat2nparray.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/estmat2nparray.ado -------------------------------------------------------------------------------- /tools/export_notebooks_to_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/export_notebooks_to_python.py -------------------------------------------------------------------------------- /tools/generate_formula_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/generate_formula_api.py -------------------------------------------------------------------------------- /tools/nbgenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/nbgenerate.py -------------------------------------------------------------------------------- /tools/releasing/release_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/releasing/release_note.py -------------------------------------------------------------------------------- /tools/releasing/release_note.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/releasing/release_note.tmpl -------------------------------------------------------------------------------- /tools/validate_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tools/validate_docstrings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/tox.ini -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squidxwh/statsmodels/HEAD/versioneer.py --------------------------------------------------------------------------------