pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-statsmodels



Module Name:    pkgsrc
Committed By:   minskim
Date:           Wed Jan  8 01:23:22 UTC 2020

Modified Files:
        pkgsrc/math/py-statsmodels: DESCR Makefile PLIST distinfo

Log Message:
math/py-statsmodels: Update to 0.10.2

This is a major release from 0.9.0 and includes a number new
statistical models and many bug fixes.

Highlights include:

* Generalized Additive Models. This major feature is experimental and
  may change.
* Conditional Models such as ConditionalLogit, which are known as
  fixed effect models in Econometrics.
* Dimension Reduction Methods include Sliced Inverse Regression,
  Principal Hessian Directions and Sliced Avg. Variance Estimation
* Regression using Quadratic Inference Functions (QIF)
* Gaussian Process Regression


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/py-statsmodels/DESCR
cvs rdiff -u -r1.5 -r1.6 pkgsrc/math/py-statsmodels/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/py-statsmodels/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/py-statsmodels/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/py-statsmodels/DESCR
diff -u pkgsrc/math/py-statsmodels/DESCR:1.1 pkgsrc/math/py-statsmodels/DESCR:1.2
--- pkgsrc/math/py-statsmodels/DESCR:1.1        Fri Jul 15 07:35:50 2016
+++ pkgsrc/math/py-statsmodels/DESCR    Wed Jan  8 01:23:22 2020
@@ -1,3 +1,6 @@
-Statsmodels is a Python package that provides a complement to scipy
-for statistical computations including descriptive statistics and
-estimation and inference for statistical models
+statsmodels is a Python module that provides classes and functions for
+the estimation of many different statistical models, as well as for
+conducting statistical tests, and statistical data exploration. An
+extensive list of result statistics are available for each
+estimator. The results are tested against existing statistical
+packages to ensure that they are correct.

Index: pkgsrc/math/py-statsmodels/Makefile
diff -u pkgsrc/math/py-statsmodels/Makefile:1.5 pkgsrc/math/py-statsmodels/Makefile:1.6
--- pkgsrc/math/py-statsmodels/Makefile:1.5     Fri Sep 27 09:00:38 2019
+++ pkgsrc/math/py-statsmodels/Makefile Wed Jan  8 01:23:22 2020
@@ -1,41 +1,24 @@
-# $NetBSD: Makefile,v 1.5 2019/09/27 09:00:38 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2020/01/08 01:23:22 minskim Exp $
 
-DISTNAME=      statsmodels-0.9.0
-PKGREVISION=   2
+DISTNAME=      statsmodels-0.10.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=s/statsmodels/}
 
 MAINTAINER=    jihbed.research%gmail.com@localhost
-HOMEPAGE=      http://www.statsmodels.org/stable/index.html
-COMMENT=       Statistical computations and models for use with SciPy
+HOMEPAGE=      https://www.statsmodels.org/
+COMMENT=       Statistical computations and models for Python
 LICENSE=       modified-bsd
 
-DEPENDS+=      ${PYPKGPREFIX}-cython>=0.14.1:../../devel/py-cython
-DEPENDS+=      ${PYPKGPREFIX}-pandas>=0.14.1:../../math/py-pandas
-DEPENDS+=      ${PYPKGPREFIX}-patsy>=0.3.0:../../math/py-patsy
-DEPENDS+=      ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-cython>=0.24:../../devel/py-cython
+DEPENDS+=      ${PYPKGPREFIX}-pandas>=0.19:../../math/py-pandas
+DEPENDS+=      ${PYPKGPREFIX}-patsy>=0.4.0:../../math/py-patsy
+DEPENDS+=      ${PYPKGPREFIX}-scipy>=0.18:../../math/py-scipy
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27      # py-matplotlib, py-scipy
 USE_LANGUAGES=                 c
 
-SUBST_CLASSES+=                scipy
-SUBST_STAGE.scipy=     pre-configure
-SUBST_MESSAGE.scipy=   Fix for newer SciPy
-SUBST_FILES.scipy=     statsmodels/distributions/edgeworth.py
-SUBST_FILES.scipy+=    statsmodels/distributions/tests/test_edgeworth.py
-SUBST_FILES.scipy+=    statsmodels/graphics/functional.py
-SUBST_FILES.scipy+=    statsmodels/miscmodels/count.py
-SUBST_FILES.scipy+=    statsmodels/sandbox/distributions/genpareto.py
-SUBST_FILES.scipy+=    statsmodels/sandbox/infotheo.py
-SUBST_FILES.scipy+=    statsmodels/sandbox/nonparametric/densityorthopoly.py
-SUBST_FILES.scipy+=    statsmodels/sandbox/nonparametric/kernels.py
-SUBST_FILES.scipy+=    statsmodels/sandbox/stats/runs.py
-SUBST_FILES.scipy+=    statsmodels/stats/moment_helpers.py
-SUBST_FILES.scipy+=    statsmodels/tsa/regime_switching/markov_switching.py
-SUBST_SED.scipy=       -e 's,\(from scipy\).misc,\1.special,'
-
 .include "../../lang/python/egg.mk"
-BUILDLINK_API_DEPENDS.py-numpy+=       ${PYPKGPREFIX}-numpy>=0.12.0
+BUILDLINK_API_DEPENDS.py-numpy+=       ${PYPKGPREFIX}-numpy>=1.11
 .include "../../math/py-numpy/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/py-statsmodels/PLIST
diff -u pkgsrc/math/py-statsmodels/PLIST:1.4 pkgsrc/math/py-statsmodels/PLIST:1.5
--- pkgsrc/math/py-statsmodels/PLIST:1.4        Fri Sep 27 09:00:38 2019
+++ pkgsrc/math/py-statsmodels/PLIST    Wed Jan  8 01:23:22 2020
@@ -1,13 +1,17 @@
-@comment $NetBSD: PLIST,v 1.4 2019/09/27 09:00:38 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5 2020/01/08 01:23:22 minskim Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
 ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/statsmodels/LICENSE.txt
 ${PYSITELIB}/statsmodels/__init__.py
 ${PYSITELIB}/statsmodels/__init__.pyc
 ${PYSITELIB}/statsmodels/__init__.pyo
+${PYSITELIB}/statsmodels/_version.py
+${PYSITELIB}/statsmodels/_version.pyc
+${PYSITELIB}/statsmodels/_version.pyo
 ${PYSITELIB}/statsmodels/api.py
 ${PYSITELIB}/statsmodels/api.pyc
 ${PYSITELIB}/statsmodels/api.pyo
@@ -17,9 +21,18 @@ ${PYSITELIB}/statsmodels/base/__init__.p
 ${PYSITELIB}/statsmodels/base/_constraints.py
 ${PYSITELIB}/statsmodels/base/_constraints.pyc
 ${PYSITELIB}/statsmodels/base/_constraints.pyo
+${PYSITELIB}/statsmodels/base/_parameter_inference.py
+${PYSITELIB}/statsmodels/base/_parameter_inference.pyc
+${PYSITELIB}/statsmodels/base/_parameter_inference.pyo
+${PYSITELIB}/statsmodels/base/_penalized.py
+${PYSITELIB}/statsmodels/base/_penalized.pyc
+${PYSITELIB}/statsmodels/base/_penalized.pyo
 ${PYSITELIB}/statsmodels/base/_penalties.py
 ${PYSITELIB}/statsmodels/base/_penalties.pyc
 ${PYSITELIB}/statsmodels/base/_penalties.pyo
+${PYSITELIB}/statsmodels/base/_screening.py
+${PYSITELIB}/statsmodels/base/_screening.pyc
+${PYSITELIB}/statsmodels/base/_screening.pyo
 ${PYSITELIB}/statsmodels/base/covtype.py
 ${PYSITELIB}/statsmodels/base/covtype.pyc
 ${PYSITELIB}/statsmodels/base/covtype.pyo
@@ -62,9 +75,18 @@ ${PYSITELIB}/statsmodels/base/tests/test
 ${PYSITELIB}/statsmodels/base/tests/test_optimize.py
 ${PYSITELIB}/statsmodels/base/tests/test_optimize.pyc
 ${PYSITELIB}/statsmodels/base/tests/test_optimize.pyo
+${PYSITELIB}/statsmodels/base/tests/test_penalized.py
+${PYSITELIB}/statsmodels/base/tests/test_penalized.pyc
+${PYSITELIB}/statsmodels/base/tests/test_penalized.pyo
+${PYSITELIB}/statsmodels/base/tests/test_penalties.py
+${PYSITELIB}/statsmodels/base/tests/test_penalties.pyc
+${PYSITELIB}/statsmodels/base/tests/test_penalties.pyo
 ${PYSITELIB}/statsmodels/base/tests/test_predict.py
 ${PYSITELIB}/statsmodels/base/tests/test_predict.pyc
 ${PYSITELIB}/statsmodels/base/tests/test_predict.pyo
+${PYSITELIB}/statsmodels/base/tests/test_screening.py
+${PYSITELIB}/statsmodels/base/tests/test_screening.pyc
+${PYSITELIB}/statsmodels/base/tests/test_screening.pyo
 ${PYSITELIB}/statsmodels/base/tests/test_shrink_pickle.py
 ${PYSITELIB}/statsmodels/base/tests/test_shrink_pickle.pyc
 ${PYSITELIB}/statsmodels/base/tests/test_shrink_pickle.pyo
@@ -80,42 +102,34 @@ ${PYSITELIB}/statsmodels/base/wrapper.py
 ${PYSITELIB}/statsmodels/compat/__init__.py
 ${PYSITELIB}/statsmodels/compat/__init__.pyc
 ${PYSITELIB}/statsmodels/compat/__init__.pyo
-${PYSITELIB}/statsmodels/compat/collections.py
-${PYSITELIB}/statsmodels/compat/collections.pyc
-${PYSITELIB}/statsmodels/compat/collections.pyo
-${PYSITELIB}/statsmodels/compat/counter.py
-${PYSITELIB}/statsmodels/compat/counter.pyc
-${PYSITELIB}/statsmodels/compat/counter.pyo
 ${PYSITELIB}/statsmodels/compat/numpy.py
 ${PYSITELIB}/statsmodels/compat/numpy.pyc
 ${PYSITELIB}/statsmodels/compat/numpy.pyo
-${PYSITELIB}/statsmodels/compat/ordereddict.py
-${PYSITELIB}/statsmodels/compat/ordereddict.pyc
-${PYSITELIB}/statsmodels/compat/ordereddict.pyo
 ${PYSITELIB}/statsmodels/compat/pandas.py
 ${PYSITELIB}/statsmodels/compat/pandas.pyc
 ${PYSITELIB}/statsmodels/compat/pandas.pyo
+${PYSITELIB}/statsmodels/compat/platform.py
+${PYSITELIB}/statsmodels/compat/platform.pyc
+${PYSITELIB}/statsmodels/compat/platform.pyo
 ${PYSITELIB}/statsmodels/compat/python.py
 ${PYSITELIB}/statsmodels/compat/python.pyc
 ${PYSITELIB}/statsmodels/compat/python.pyo
 ${PYSITELIB}/statsmodels/compat/scipy.py
 ${PYSITELIB}/statsmodels/compat/scipy.pyc
 ${PYSITELIB}/statsmodels/compat/scipy.pyo
-${PYSITELIB}/statsmodels/compat/testing.py
-${PYSITELIB}/statsmodels/compat/testing.pyc
-${PYSITELIB}/statsmodels/compat/testing.pyo
 ${PYSITELIB}/statsmodels/compat/tests/__init__.py
 ${PYSITELIB}/statsmodels/compat/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/compat/tests/__init__.pyo
-${PYSITELIB}/statsmodels/compat/tests/test_collections.py
-${PYSITELIB}/statsmodels/compat/tests/test_collections.pyc
-${PYSITELIB}/statsmodels/compat/tests/test_collections.pyo
 ${PYSITELIB}/statsmodels/compat/tests/test_itercompat.py
 ${PYSITELIB}/statsmodels/compat/tests/test_itercompat.pyc
 ${PYSITELIB}/statsmodels/compat/tests/test_itercompat.pyo
 ${PYSITELIB}/statsmodels/compat/tests/test_scipy_compat.py
 ${PYSITELIB}/statsmodels/compat/tests/test_scipy_compat.pyc
 ${PYSITELIB}/statsmodels/compat/tests/test_scipy_compat.pyo
+${PYSITELIB}/statsmodels/conftest.py
+${PYSITELIB}/statsmodels/conftest.pyc
+${PYSITELIB}/statsmodels/conftest.pyo
+${PYSITELIB}/statsmodels/datasets/README.txt
 ${PYSITELIB}/statsmodels/datasets/__init__.py
 ${PYSITELIB}/statsmodels/datasets/__init__.pyc
 ${PYSITELIB}/statsmodels/datasets/__init__.pyo
@@ -317,9 +331,6 @@ ${PYSITELIB}/statsmodels/datasets/templa
 ${PYSITELIB}/statsmodels/datasets/tests/__init__.py
 ${PYSITELIB}/statsmodels/datasets/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/datasets/tests/__init__.pyo
-${PYSITELIB}/statsmodels/datasets/tests/raw.github.com,vincentarelbundock,Rdatasets,master,csv,car,Duncan.csv.zip
-${PYSITELIB}/statsmodels/datasets/tests/raw.github.com,vincentarelbundock,Rdatasets,master,datasets.csv.zip
-${PYSITELIB}/statsmodels/datasets/tests/raw.github.com,vincentarelbundock,Rdatasets,master,doc,car,rst,Duncan.rst.zip
 ${PYSITELIB}/statsmodels/datasets/tests/test_data.py
 ${PYSITELIB}/statsmodels/datasets/tests/test_data.pyc
 ${PYSITELIB}/statsmodels/datasets/tests/test_data.pyo
@@ -335,6 +346,9 @@ ${PYSITELIB}/statsmodels/discrete/__init
 ${PYSITELIB}/statsmodels/discrete/_diagnostics_count.py
 ${PYSITELIB}/statsmodels/discrete/_diagnostics_count.pyc
 ${PYSITELIB}/statsmodels/discrete/_diagnostics_count.pyo
+${PYSITELIB}/statsmodels/discrete/conditional_models.py
+${PYSITELIB}/statsmodels/discrete/conditional_models.pyc
+${PYSITELIB}/statsmodels/discrete/conditional_models.pyo
 ${PYSITELIB}/statsmodels/discrete/count_model.py
 ${PYSITELIB}/statsmodels/discrete/count_model.pyc
 ${PYSITELIB}/statsmodels/discrete/count_model.pyo
@@ -375,6 +389,9 @@ ${PYSITELIB}/statsmodels/discrete/tests/
 ${PYSITELIB}/statsmodels/discrete/tests/results/sm3533.csv
 ${PYSITELIB}/statsmodels/discrete/tests/results/yhat_mnlogit.csv
 ${PYSITELIB}/statsmodels/discrete/tests/results/yhat_poisson.csv
+${PYSITELIB}/statsmodels/discrete/tests/test_conditional.py
+${PYSITELIB}/statsmodels/discrete/tests/test_conditional.pyc
+${PYSITELIB}/statsmodels/discrete/tests/test_conditional.pyo
 ${PYSITELIB}/statsmodels/discrete/tests/test_constrained.py
 ${PYSITELIB}/statsmodels/discrete/tests/test_constrained.pyc
 ${PYSITELIB}/statsmodels/discrete/tests/test_constrained.pyo
@@ -441,25 +458,25 @@ ${PYSITELIB}/statsmodels/duration/survfu
 ${PYSITELIB}/statsmodels/duration/tests/__init__.py
 ${PYSITELIB}/statsmodels/duration/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/duration/tests/__init__.pyo
-${PYSITELIB}/statsmodels/duration/tests/phreg_gentests.py
-${PYSITELIB}/statsmodels/duration/tests/phreg_gentests.pyc
-${PYSITELIB}/statsmodels/duration/tests/phreg_gentests.pyo
 ${PYSITELIB}/statsmodels/duration/tests/results/__init__.py
 ${PYSITELIB}/statsmodels/duration/tests/results/__init__.pyc
 ${PYSITELIB}/statsmodels/duration/tests/results/__init__.pyo
 ${PYSITELIB}/statsmodels/duration/tests/results/bmt.csv
 ${PYSITELIB}/statsmodels/duration/tests/results/bmt_results.csv
+${PYSITELIB}/statsmodels/duration/tests/results/phreg_gentests.py
+${PYSITELIB}/statsmodels/duration/tests/results/phreg_gentests.pyc
+${PYSITELIB}/statsmodels/duration/tests/results/phreg_gentests.pyo
 ${PYSITELIB}/statsmodels/duration/tests/results/survival_data_1000_10.csv
 ${PYSITELIB}/statsmodels/duration/tests/results/survival_data_100_5.csv
 ${PYSITELIB}/statsmodels/duration/tests/results/survival_data_20_1.csv
 ${PYSITELIB}/statsmodels/duration/tests/results/survival_data_50_1.csv
 ${PYSITELIB}/statsmodels/duration/tests/results/survival_data_50_2.csv
-${PYSITELIB}/statsmodels/duration/tests/survival_enet_r_results.py
-${PYSITELIB}/statsmodels/duration/tests/survival_enet_r_results.pyc
-${PYSITELIB}/statsmodels/duration/tests/survival_enet_r_results.pyo
-${PYSITELIB}/statsmodels/duration/tests/survival_r_results.py
-${PYSITELIB}/statsmodels/duration/tests/survival_r_results.pyc
-${PYSITELIB}/statsmodels/duration/tests/survival_r_results.pyo
+${PYSITELIB}/statsmodels/duration/tests/results/survival_enet_r_results.py
+${PYSITELIB}/statsmodels/duration/tests/results/survival_enet_r_results.pyc
+${PYSITELIB}/statsmodels/duration/tests/results/survival_enet_r_results.pyo
+${PYSITELIB}/statsmodels/duration/tests/results/survival_r_results.py
+${PYSITELIB}/statsmodels/duration/tests/results/survival_r_results.pyc
+${PYSITELIB}/statsmodels/duration/tests/results/survival_r_results.pyo
 ${PYSITELIB}/statsmodels/duration/tests/test_phreg.py
 ${PYSITELIB}/statsmodels/duration/tests/test_phreg.pyc
 ${PYSITELIB}/statsmodels/duration/tests/test_phreg.pyo
@@ -484,9 +501,6 @@ ${PYSITELIB}/statsmodels/emplike/elanova
 ${PYSITELIB}/statsmodels/emplike/elregress.py
 ${PYSITELIB}/statsmodels/emplike/elregress.pyc
 ${PYSITELIB}/statsmodels/emplike/elregress.pyo
-${PYSITELIB}/statsmodels/emplike/koul_and_mc.py
-${PYSITELIB}/statsmodels/emplike/koul_and_mc.pyc
-${PYSITELIB}/statsmodels/emplike/koul_and_mc.pyo
 ${PYSITELIB}/statsmodels/emplike/originregress.py
 ${PYSITELIB}/statsmodels/emplike/originregress.pyc
 ${PYSITELIB}/statsmodels/emplike/originregress.pyo
@@ -529,6 +543,62 @@ ${PYSITELIB}/statsmodels/formula/tests/_
 ${PYSITELIB}/statsmodels/formula/tests/test_formula.py
 ${PYSITELIB}/statsmodels/formula/tests/test_formula.pyc
 ${PYSITELIB}/statsmodels/formula/tests/test_formula.pyo
+${PYSITELIB}/statsmodels/gam/__init__.py
+${PYSITELIB}/statsmodels/gam/__init__.pyc
+${PYSITELIB}/statsmodels/gam/__init__.pyo
+${PYSITELIB}/statsmodels/gam/api.py
+${PYSITELIB}/statsmodels/gam/api.pyc
+${PYSITELIB}/statsmodels/gam/api.pyo
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/__init__.py
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/__init__.pyc
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/__init__.pyo
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/cross_validators.py
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/cross_validators.pyc
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/cross_validators.pyo
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/gam_cross_validation.py
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/gam_cross_validation.pyc
+${PYSITELIB}/statsmodels/gam/gam_cross_validation/gam_cross_validation.pyo
+${PYSITELIB}/statsmodels/gam/gam_penalties.py
+${PYSITELIB}/statsmodels/gam/gam_penalties.pyc
+${PYSITELIB}/statsmodels/gam/gam_penalties.pyo
+${PYSITELIB}/statsmodels/gam/generalized_additive_model.py
+${PYSITELIB}/statsmodels/gam/generalized_additive_model.pyc
+${PYSITELIB}/statsmodels/gam/generalized_additive_model.pyo
+${PYSITELIB}/statsmodels/gam/smooth_basis.py
+${PYSITELIB}/statsmodels/gam/smooth_basis.pyc
+${PYSITELIB}/statsmodels/gam/smooth_basis.pyo
+${PYSITELIB}/statsmodels/gam/tests/__init__.py
+${PYSITELIB}/statsmodels/gam/tests/__init__.pyc
+${PYSITELIB}/statsmodels/gam/tests/__init__.pyo
+${PYSITELIB}/statsmodels/gam/tests/results/__init__.py
+${PYSITELIB}/statsmodels/gam/tests/results/__init__.pyc
+${PYSITELIB}/statsmodels/gam/tests/results/__init__.pyo
+${PYSITELIB}/statsmodels/gam/tests/results/autos.csv
+${PYSITELIB}/statsmodels/gam/tests/results/autos_exog.csv
+${PYSITELIB}/statsmodels/gam/tests/results/autos_predict.csv
+${PYSITELIB}/statsmodels/gam/tests/results/cubic_cyclic_splines_from_mgcv.csv
+${PYSITELIB}/statsmodels/gam/tests/results/gam_PIRLS_results.csv
+${PYSITELIB}/statsmodels/gam/tests/results/logit_gam_mgcv.csv
+${PYSITELIB}/statsmodels/gam/tests/results/motorcycle.csv
+${PYSITELIB}/statsmodels/gam/tests/results/prediction_from_mgcv.csv
+${PYSITELIB}/statsmodels/gam/tests/results/results_mpg_bs.py
+${PYSITELIB}/statsmodels/gam/tests/results/results_mpg_bs.pyc
+${PYSITELIB}/statsmodels/gam/tests/results/results_mpg_bs.pyo
+${PYSITELIB}/statsmodels/gam/tests/results/results_mpg_bs_poisson.py
+${PYSITELIB}/statsmodels/gam/tests/results/results_mpg_bs_poisson.pyc
+${PYSITELIB}/statsmodels/gam/tests/results/results_mpg_bs_poisson.pyo
+${PYSITELIB}/statsmodels/gam/tests/results/results_pls.py
+${PYSITELIB}/statsmodels/gam/tests/results/results_pls.pyc
+${PYSITELIB}/statsmodels/gam/tests/results/results_pls.pyo
+${PYSITELIB}/statsmodels/gam/tests/test_gam.py
+${PYSITELIB}/statsmodels/gam/tests/test_gam.pyc
+${PYSITELIB}/statsmodels/gam/tests/test_gam.pyo
+${PYSITELIB}/statsmodels/gam/tests/test_penalized.py
+${PYSITELIB}/statsmodels/gam/tests/test_penalized.pyc
+${PYSITELIB}/statsmodels/gam/tests/test_penalized.pyo
+${PYSITELIB}/statsmodels/gam/tests/test_smooth_basis.py
+${PYSITELIB}/statsmodels/gam/tests/test_smooth_basis.pyc
+${PYSITELIB}/statsmodels/gam/tests/test_smooth_basis.pyo
 ${PYSITELIB}/statsmodels/genmod/__init__.py
 ${PYSITELIB}/statsmodels/genmod/__init__.pyc
 ${PYSITELIB}/statsmodels/genmod/__init__.pyo
@@ -571,6 +641,9 @@ ${PYSITELIB}/statsmodels/genmod/generali
 ${PYSITELIB}/statsmodels/genmod/generalized_linear_model.py
 ${PYSITELIB}/statsmodels/genmod/generalized_linear_model.pyc
 ${PYSITELIB}/statsmodels/genmod/generalized_linear_model.pyo
+${PYSITELIB}/statsmodels/genmod/qif.py
+${PYSITELIB}/statsmodels/genmod/qif.pyc
+${PYSITELIB}/statsmodels/genmod/qif.pyo
 ${PYSITELIB}/statsmodels/genmod/tests/__init__.py
 ${PYSITELIB}/statsmodels/genmod/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/genmod/tests/__init__.pyo
@@ -586,9 +659,6 @@ ${PYSITELIB}/statsmodels/genmod/tests/ge
 ${PYSITELIB}/statsmodels/genmod/tests/gee_simulation_check.py
 ${PYSITELIB}/statsmodels/genmod/tests/gee_simulation_check.pyc
 ${PYSITELIB}/statsmodels/genmod/tests/gee_simulation_check.pyo
-${PYSITELIB}/statsmodels/genmod/tests/glmnet_r_results.py
-${PYSITELIB}/statsmodels/genmod/tests/glmnet_r_results.pyc
-${PYSITELIB}/statsmodels/genmod/tests/glmnet_r_results.pyo
 ${PYSITELIB}/statsmodels/genmod/tests/results/__init__.py
 ${PYSITELIB}/statsmodels/genmod/tests/results/__init__.pyc
 ${PYSITELIB}/statsmodels/genmod/tests/results/__init__.pyo
@@ -610,6 +680,9 @@ ${PYSITELIB}/statsmodels/genmod/tests/re
 ${PYSITELIB}/statsmodels/genmod/tests/results/glm_test_resids.py
 ${PYSITELIB}/statsmodels/genmod/tests/results/glm_test_resids.pyc
 ${PYSITELIB}/statsmodels/genmod/tests/results/glm_test_resids.pyo
+${PYSITELIB}/statsmodels/genmod/tests/results/glmnet_r_results.py
+${PYSITELIB}/statsmodels/genmod/tests/results/glmnet_r_results.pyc
+${PYSITELIB}/statsmodels/genmod/tests/results/glmnet_r_results.pyo
 ${PYSITELIB}/statsmodels/genmod/tests/results/igaussident_resids.csv
 ${PYSITELIB}/statsmodels/genmod/tests/results/inv_gaussian.csv
 ${PYSITELIB}/statsmodels/genmod/tests/results/iris.csv
@@ -645,6 +718,12 @@ ${PYSITELIB}/statsmodels/genmod/tests/te
 ${PYSITELIB}/statsmodels/genmod/tests/test_glm_weights.py
 ${PYSITELIB}/statsmodels/genmod/tests/test_glm_weights.pyc
 ${PYSITELIB}/statsmodels/genmod/tests/test_glm_weights.pyo
+${PYSITELIB}/statsmodels/genmod/tests/test_qif.py
+${PYSITELIB}/statsmodels/genmod/tests/test_qif.pyc
+${PYSITELIB}/statsmodels/genmod/tests/test_qif.pyo
+${PYSITELIB}/statsmodels/genmod/tests/test_score_test.py
+${PYSITELIB}/statsmodels/genmod/tests/test_score_test.pyc
+${PYSITELIB}/statsmodels/genmod/tests/test_score_test.pyo
 ${PYSITELIB}/statsmodels/graphics/__init__.py
 ${PYSITELIB}/statsmodels/graphics/__init__.pyc
 ${PYSITELIB}/statsmodels/graphics/__init__.pyo
@@ -753,9 +832,6 @@ ${PYSITELIB}/statsmodels/imputation/test
 ${PYSITELIB}/statsmodels/imputation/tests/test_ros.py
 ${PYSITELIB}/statsmodels/imputation/tests/test_ros.pyc
 ${PYSITELIB}/statsmodels/imputation/tests/test_ros.pyo
-${PYSITELIB}/statsmodels/info.py
-${PYSITELIB}/statsmodels/info.pyc
-${PYSITELIB}/statsmodels/info.pyo
 ${PYSITELIB}/statsmodels/interface/__init__.py
 ${PYSITELIB}/statsmodels/interface/__init__.pyc
 ${PYSITELIB}/statsmodels/interface/__init__.pyo
@@ -1006,6 +1082,9 @@ ${PYSITELIB}/statsmodels/regression/_pre
 ${PYSITELIB}/statsmodels/regression/_tools.py
 ${PYSITELIB}/statsmodels/regression/_tools.pyc
 ${PYSITELIB}/statsmodels/regression/_tools.pyo
+${PYSITELIB}/statsmodels/regression/dimred.py
+${PYSITELIB}/statsmodels/regression/dimred.pyc
+${PYSITELIB}/statsmodels/regression/dimred.pyo
 ${PYSITELIB}/statsmodels/regression/feasible_gls.py
 ${PYSITELIB}/statsmodels/regression/feasible_gls.pyc
 ${PYSITELIB}/statsmodels/regression/feasible_gls.pyo
@@ -1015,6 +1094,9 @@ ${PYSITELIB}/statsmodels/regression/line
 ${PYSITELIB}/statsmodels/regression/mixed_linear_model.py
 ${PYSITELIB}/statsmodels/regression/mixed_linear_model.pyc
 ${PYSITELIB}/statsmodels/regression/mixed_linear_model.pyo
+${PYSITELIB}/statsmodels/regression/process_regression.py
+${PYSITELIB}/statsmodels/regression/process_regression.pyc
+${PYSITELIB}/statsmodels/regression/process_regression.pyo
 ${PYSITELIB}/statsmodels/regression/quantile_regression.py
 ${PYSITELIB}/statsmodels/regression/quantile_regression.pyc
 ${PYSITELIB}/statsmodels/regression/quantile_regression.pyo
@@ -1024,22 +1106,19 @@ ${PYSITELIB}/statsmodels/regression/recu
 ${PYSITELIB}/statsmodels/regression/tests/__init__.py
 ${PYSITELIB}/statsmodels/regression/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/regression/tests/__init__.pyo
-${PYSITELIB}/statsmodels/regression/tests/generate_lasso.py
-${PYSITELIB}/statsmodels/regression/tests/generate_lasso.pyc
-${PYSITELIB}/statsmodels/regression/tests/generate_lasso.pyo
-${PYSITELIB}/statsmodels/regression/tests/generate_lme.py
-${PYSITELIB}/statsmodels/regression/tests/generate_lme.pyc
-${PYSITELIB}/statsmodels/regression/tests/generate_lme.pyo
-${PYSITELIB}/statsmodels/regression/tests/glmnet_r_results.py
-${PYSITELIB}/statsmodels/regression/tests/glmnet_r_results.pyc
-${PYSITELIB}/statsmodels/regression/tests/glmnet_r_results.pyo
-${PYSITELIB}/statsmodels/regression/tests/lme_r_results.py
-${PYSITELIB}/statsmodels/regression/tests/lme_r_results.pyc
-${PYSITELIB}/statsmodels/regression/tests/lme_r_results.pyo
 ${PYSITELIB}/statsmodels/regression/tests/results/__init__.py
 ${PYSITELIB}/statsmodels/regression/tests/results/__init__.pyc
 ${PYSITELIB}/statsmodels/regression/tests/results/__init__.pyo
 ${PYSITELIB}/statsmodels/regression/tests/results/dietox.csv
+${PYSITELIB}/statsmodels/regression/tests/results/generate_lasso.py
+${PYSITELIB}/statsmodels/regression/tests/results/generate_lasso.pyc
+${PYSITELIB}/statsmodels/regression/tests/results/generate_lasso.pyo
+${PYSITELIB}/statsmodels/regression/tests/results/generate_lme.py
+${PYSITELIB}/statsmodels/regression/tests/results/generate_lme.pyc
+${PYSITELIB}/statsmodels/regression/tests/results/generate_lme.pyo
+${PYSITELIB}/statsmodels/regression/tests/results/glmnet_r_results.py
+${PYSITELIB}/statsmodels/regression/tests/results/glmnet_r_results.pyc
+${PYSITELIB}/statsmodels/regression/tests/results/glmnet_r_results.pyo
 ${PYSITELIB}/statsmodels/regression/tests/results/lasso_data.csv
 ${PYSITELIB}/statsmodels/regression/tests/results/leverage_influence_ols_nostars.txt
 ${PYSITELIB}/statsmodels/regression/tests/results/lme00.csv
@@ -1054,6 +1133,9 @@ ${PYSITELIB}/statsmodels/regression/test
 ${PYSITELIB}/statsmodels/regression/tests/results/lme09.csv
 ${PYSITELIB}/statsmodels/regression/tests/results/lme10.csv
 ${PYSITELIB}/statsmodels/regression/tests/results/lme11.csv
+${PYSITELIB}/statsmodels/regression/tests/results/lme_r_results.py
+${PYSITELIB}/statsmodels/regression/tests/results/lme_r_results.pyc
+${PYSITELIB}/statsmodels/regression/tests/results/lme_r_results.pyo
 ${PYSITELIB}/statsmodels/regression/tests/results/macro_gr_corc_stata.py
 ${PYSITELIB}/statsmodels/regression/tests/results/macro_gr_corc_stata.pyc
 ${PYSITELIB}/statsmodels/regression/tests/results/macro_gr_corc_stata.pyo
@@ -1064,6 +1146,9 @@ ${PYSITELIB}/statsmodels/regression/test
 ${PYSITELIB}/statsmodels/regression/tests/results/results_macro_ols_robust.py
 ${PYSITELIB}/statsmodels/regression/tests/results/results_macro_ols_robust.pyc
 ${PYSITELIB}/statsmodels/regression/tests/results/results_macro_ols_robust.pyo
+${PYSITELIB}/statsmodels/regression/tests/results/results_quantile_regression.py
+${PYSITELIB}/statsmodels/regression/tests/results/results_quantile_regression.pyc
+${PYSITELIB}/statsmodels/regression/tests/results/results_quantile_regression.pyo
 ${PYSITELIB}/statsmodels/regression/tests/results/results_regression.py
 ${PYSITELIB}/statsmodels/regression/tests/results/results_regression.pyc
 ${PYSITELIB}/statsmodels/regression/tests/results/results_regression.pyo
@@ -1073,12 +1158,12 @@ ${PYSITELIB}/statsmodels/regression/test
 ${PYSITELIB}/statsmodels/regression/tests/results/results_theil_textile.pyc
 ${PYSITELIB}/statsmodels/regression/tests/results/results_theil_textile.pyo
 ${PYSITELIB}/statsmodels/regression/tests/results/theil_textile_predict.csv
-${PYSITELIB}/statsmodels/regression/tests/results_quantile_regression.py
-${PYSITELIB}/statsmodels/regression/tests/results_quantile_regression.pyc
-${PYSITELIB}/statsmodels/regression/tests/results_quantile_regression.pyo
 ${PYSITELIB}/statsmodels/regression/tests/test_cov.py
 ${PYSITELIB}/statsmodels/regression/tests/test_cov.pyc
 ${PYSITELIB}/statsmodels/regression/tests/test_cov.pyo
+${PYSITELIB}/statsmodels/regression/tests/test_dimred.py
+${PYSITELIB}/statsmodels/regression/tests/test_dimred.pyc
+${PYSITELIB}/statsmodels/regression/tests/test_dimred.pyo
 ${PYSITELIB}/statsmodels/regression/tests/test_glsar_gretl.py
 ${PYSITELIB}/statsmodels/regression/tests/test_glsar_gretl.pyc
 ${PYSITELIB}/statsmodels/regression/tests/test_glsar_gretl.pyo
@@ -1091,6 +1176,9 @@ ${PYSITELIB}/statsmodels/regression/test
 ${PYSITELIB}/statsmodels/regression/tests/test_predict.py
 ${PYSITELIB}/statsmodels/regression/tests/test_predict.pyc
 ${PYSITELIB}/statsmodels/regression/tests/test_predict.pyo
+${PYSITELIB}/statsmodels/regression/tests/test_processreg.py
+${PYSITELIB}/statsmodels/regression/tests/test_processreg.pyc
+${PYSITELIB}/statsmodels/regression/tests/test_processreg.pyo
 ${PYSITELIB}/statsmodels/regression/tests/test_quantile_regression.py
 ${PYSITELIB}/statsmodels/regression/tests/test_quantile_regression.pyc
 ${PYSITELIB}/statsmodels/regression/tests/test_quantile_regression.pyo
@@ -1241,6 +1329,9 @@ ${PYSITELIB}/statsmodels/sandbox/distrib
 ${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_extras.py
 ${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_extras.pyc
 ${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_extras.pyo
+${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_gof_new.py
+${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_gof_new.pyc
+${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_gof_new.pyo
 ${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_multivariate.py
 ${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_multivariate.pyc
 ${PYSITELIB}/statsmodels/sandbox/distributions/tests/test_multivariate.pyo
@@ -1346,9 +1437,6 @@ ${PYSITELIB}/statsmodels/sandbox/panel/p
 ${PYSITELIB}/statsmodels/sandbox/panel/random_panel.py
 ${PYSITELIB}/statsmodels/sandbox/panel/random_panel.pyc
 ${PYSITELIB}/statsmodels/sandbox/panel/random_panel.pyo
-${PYSITELIB}/statsmodels/sandbox/panel/sandwich_covariance.py
-${PYSITELIB}/statsmodels/sandbox/panel/sandwich_covariance.pyc
-${PYSITELIB}/statsmodels/sandbox/panel/sandwich_covariance.pyo
 ${PYSITELIB}/statsmodels/sandbox/panel/sandwich_covariance_generic.py
 ${PYSITELIB}/statsmodels/sandbox/panel/sandwich_covariance_generic.pyc
 ${PYSITELIB}/statsmodels/sandbox/panel/sandwich_covariance_generic.pyo
@@ -1474,15 +1562,9 @@ ${PYSITELIB}/statsmodels/sandbox/sysreg.
 ${PYSITELIB}/statsmodels/sandbox/tests/__init__.py
 ${PYSITELIB}/statsmodels/sandbox/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/sandbox/tests/__init__.pyo
-${PYSITELIB}/statsmodels/sandbox/tests/datamlw.py
-${PYSITELIB}/statsmodels/sandbox/tests/datamlw.pyc
-${PYSITELIB}/statsmodels/sandbox/tests/datamlw.pyo
 ${PYSITELIB}/statsmodels/sandbox/tests/maketests_mlabwrap.py
 ${PYSITELIB}/statsmodels/sandbox/tests/maketests_mlabwrap.pyc
 ${PYSITELIB}/statsmodels/sandbox/tests/maketests_mlabwrap.pyo
-${PYSITELIB}/statsmodels/sandbox/tests/model_results.py
-${PYSITELIB}/statsmodels/sandbox/tests/model_results.pyc
-${PYSITELIB}/statsmodels/sandbox/tests/model_results.pyo
 ${PYSITELIB}/statsmodels/sandbox/tests/savervs.py
 ${PYSITELIB}/statsmodels/sandbox/tests/savervs.pyc
 ${PYSITELIB}/statsmodels/sandbox/tests/savervs.pyo
@@ -1549,6 +1631,7 @@ ${PYSITELIB}/statsmodels/sandbox/tsa/var
 ${PYSITELIB}/statsmodels/sandbox/utils_old.py
 ${PYSITELIB}/statsmodels/sandbox/utils_old.pyc
 ${PYSITELIB}/statsmodels/sandbox/utils_old.pyo
+${PYSITELIB}/statsmodels/setup.cfg
 ${PYSITELIB}/statsmodels/src/__init__.py
 ${PYSITELIB}/statsmodels/src/__init__.pyc
 ${PYSITELIB}/statsmodels/src/__init__.pyo
@@ -1558,6 +1641,9 @@ ${PYSITELIB}/statsmodels/stats/__init__.
 ${PYSITELIB}/statsmodels/stats/_adnorm.py
 ${PYSITELIB}/statsmodels/stats/_adnorm.pyc
 ${PYSITELIB}/statsmodels/stats/_adnorm.pyo
+${PYSITELIB}/statsmodels/stats/_diagnostic_other.py
+${PYSITELIB}/statsmodels/stats/_diagnostic_other.pyc
+${PYSITELIB}/statsmodels/stats/_diagnostic_other.pyo
 ${PYSITELIB}/statsmodels/stats/_knockoff.py
 ${PYSITELIB}/statsmodels/stats/_knockoff.pyc
 ${PYSITELIB}/statsmodels/stats/_knockoff.pyo
@@ -1657,12 +1743,15 @@ ${PYSITELIB}/statsmodels/stats/tests/__i
 ${PYSITELIB}/statsmodels/stats/tests/results/__init__.py
 ${PYSITELIB}/statsmodels/stats/tests/results/__init__.pyc
 ${PYSITELIB}/statsmodels/stats/tests/results/__init__.pyo
+${PYSITELIB}/statsmodels/stats/tests/results/binary_constrict.csv
 ${PYSITELIB}/statsmodels/stats/tests/results/bootleg.csv
 ${PYSITELIB}/statsmodels/stats/tests/results/contingency_table_r_results.csv
+${PYSITELIB}/statsmodels/stats/tests/results/data.dat
 ${PYSITELIB}/statsmodels/stats/tests/results/framing.csv
 ${PYSITELIB}/statsmodels/stats/tests/results/influence_lsdiag_R.json
 ${PYSITELIB}/statsmodels/stats/tests/results/influence_measures_R.csv
 ${PYSITELIB}/statsmodels/stats/tests/results/influence_measures_bool_R.csv
+${PYSITELIB}/statsmodels/stats/tests/results/results_influence_logit.csv
 ${PYSITELIB}/statsmodels/stats/tests/results/results_multinomial_proportions.py
 ${PYSITELIB}/statsmodels/stats/tests/results/results_multinomial_proportions.pyc
 ${PYSITELIB}/statsmodels/stats/tests/results/results_multinomial_proportions.pyo
@@ -1675,6 +1764,10 @@ ${PYSITELIB}/statsmodels/stats/tests/res
 ${PYSITELIB}/statsmodels/stats/tests/results/results_proportion.py
 ${PYSITELIB}/statsmodels/stats/tests/results/results_proportion.pyc
 ${PYSITELIB}/statsmodels/stats/tests/results/results_proportion.pyo
+${PYSITELIB}/statsmodels/stats/tests/results/wspec1.csv
+${PYSITELIB}/statsmodels/stats/tests/results/wspec2.csv
+${PYSITELIB}/statsmodels/stats/tests/results/wspec3.csv
+${PYSITELIB}/statsmodels/stats/tests/results/wspec4.csv
 ${PYSITELIB}/statsmodels/stats/tests/test_anova.py
 ${PYSITELIB}/statsmodels/stats/tests/test_anova.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_anova.pyo
@@ -1687,6 +1780,9 @@ ${PYSITELIB}/statsmodels/stats/tests/tes
 ${PYSITELIB}/statsmodels/stats/tests/test_contrast.py
 ${PYSITELIB}/statsmodels/stats/tests/test_contrast.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_contrast.pyo
+${PYSITELIB}/statsmodels/stats/tests/test_correlation.py
+${PYSITELIB}/statsmodels/stats/tests/test_correlation.pyc
+${PYSITELIB}/statsmodels/stats/tests/test_correlation.pyo
 ${PYSITELIB}/statsmodels/stats/tests/test_corrpsd.py
 ${PYSITELIB}/statsmodels/stats/tests/test_corrpsd.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_corrpsd.pyo
@@ -1697,12 +1793,18 @@ ${PYSITELIB}/statsmodels/stats/tests/tes
 ${PYSITELIB}/statsmodels/stats/tests/test_diagnostic.py
 ${PYSITELIB}/statsmodels/stats/tests/test_diagnostic.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_diagnostic.pyo
+${PYSITELIB}/statsmodels/stats/tests/test_diagnostic_other.py
+${PYSITELIB}/statsmodels/stats/tests/test_diagnostic_other.pyc
+${PYSITELIB}/statsmodels/stats/tests/test_diagnostic_other.pyo
 ${PYSITELIB}/statsmodels/stats/tests/test_gof.py
 ${PYSITELIB}/statsmodels/stats/tests/test_gof.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_gof.pyo
 ${PYSITELIB}/statsmodels/stats/tests/test_groups_sw.py
 ${PYSITELIB}/statsmodels/stats/tests/test_groups_sw.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_groups_sw.pyo
+${PYSITELIB}/statsmodels/stats/tests/test_influence.py
+${PYSITELIB}/statsmodels/stats/tests/test_influence.pyc
+${PYSITELIB}/statsmodels/stats/tests/test_influence.pyo
 ${PYSITELIB}/statsmodels/stats/tests/test_inter_rater.py
 ${PYSITELIB}/statsmodels/stats/tests/test_inter_rater.pyc
 ${PYSITELIB}/statsmodels/stats/tests/test_inter_rater.pyo
@@ -1757,6 +1859,12 @@ ${PYSITELIB}/statsmodels/stats/tests/tes
 ${PYSITELIB}/statsmodels/stats/weightstats.py
 ${PYSITELIB}/statsmodels/stats/weightstats.pyc
 ${PYSITELIB}/statsmodels/stats/weightstats.pyo
+${PYSITELIB}/statsmodels/tests/__init__.py
+${PYSITELIB}/statsmodels/tests/__init__.pyc
+${PYSITELIB}/statsmodels/tests/__init__.pyo
+${PYSITELIB}/statsmodels/tests/test_package.py
+${PYSITELIB}/statsmodels/tests/test_package.pyc
+${PYSITELIB}/statsmodels/tests/test_package.pyo
 ${PYSITELIB}/statsmodels/tools/__init__.py
 ${PYSITELIB}/statsmodels/tools/__init__.pyc
 ${PYSITELIB}/statsmodels/tools/__init__.pyo
@@ -1772,9 +1880,9 @@ ${PYSITELIB}/statsmodels/tools/data.pyo
 ${PYSITELIB}/statsmodels/tools/decorators.py
 ${PYSITELIB}/statsmodels/tools/decorators.pyc
 ${PYSITELIB}/statsmodels/tools/decorators.pyo
-${PYSITELIB}/statsmodels/tools/dump2module.py
-${PYSITELIB}/statsmodels/tools/dump2module.pyc
-${PYSITELIB}/statsmodels/tools/dump2module.pyo
+${PYSITELIB}/statsmodels/tools/docstring.py
+${PYSITELIB}/statsmodels/tools/docstring.pyc
+${PYSITELIB}/statsmodels/tools/docstring.pyo
 ${PYSITELIB}/statsmodels/tools/eval_measures.py
 ${PYSITELIB}/statsmodels/tools/eval_measures.pyc
 ${PYSITELIB}/statsmodels/tools/eval_measures.pyo
@@ -1814,6 +1922,9 @@ ${PYSITELIB}/statsmodels/tools/tests/tes
 ${PYSITELIB}/statsmodels/tools/tests/test_data.py
 ${PYSITELIB}/statsmodels/tools/tests/test_data.pyc
 ${PYSITELIB}/statsmodels/tools/tests/test_data.pyo
+${PYSITELIB}/statsmodels/tools/tests/test_decorators.py
+${PYSITELIB}/statsmodels/tools/tests/test_decorators.pyc
+${PYSITELIB}/statsmodels/tools/tests/test_decorators.pyo
 ${PYSITELIB}/statsmodels/tools/tests/test_eval_measures.py
 ${PYSITELIB}/statsmodels/tools/tests/test_eval_measures.pyc
 ${PYSITELIB}/statsmodels/tools/tests/test_eval_measures.pyo
@@ -1835,6 +1946,9 @@ ${PYSITELIB}/statsmodels/tools/tests/tes
 ${PYSITELIB}/statsmodels/tools/tests/test_sequences.py
 ${PYSITELIB}/statsmodels/tools/tests/test_sequences.pyc
 ${PYSITELIB}/statsmodels/tools/tests/test_sequences.pyo
+${PYSITELIB}/statsmodels/tools/tests/test_testing.py
+${PYSITELIB}/statsmodels/tools/tests/test_testing.pyc
+${PYSITELIB}/statsmodels/tools/tests/test_testing.pyo
 ${PYSITELIB}/statsmodels/tools/tests/test_tools.py
 ${PYSITELIB}/statsmodels/tools/tests/test_tools.pyc
 ${PYSITELIB}/statsmodels/tools/tests/test_tools.pyo
@@ -1853,15 +1967,13 @@ ${PYSITELIB}/statsmodels/tools/transform
 ${PYSITELIB}/statsmodels/tools/web.py
 ${PYSITELIB}/statsmodels/tools/web.pyc
 ${PYSITELIB}/statsmodels/tools/web.pyo
-${PYSITELIB}/statsmodels/tools/wrappers.py
-${PYSITELIB}/statsmodels/tools/wrappers.pyc
-${PYSITELIB}/statsmodels/tools/wrappers.pyo
 ${PYSITELIB}/statsmodels/tsa/__init__.py
 ${PYSITELIB}/statsmodels/tsa/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/__init__.pyo
 ${PYSITELIB}/statsmodels/tsa/_bds.py
 ${PYSITELIB}/statsmodels/tsa/_bds.pyc
 ${PYSITELIB}/statsmodels/tsa/_bds.pyo
+${PYSITELIB}/statsmodels/tsa/_exponential_smoothers.so
 ${PYSITELIB}/statsmodels/tsa/adfvalues.py
 ${PYSITELIB}/statsmodels/tsa/adfvalues.pyc
 ${PYSITELIB}/statsmodels/tsa/adfvalues.pyo
@@ -1895,6 +2007,9 @@ ${PYSITELIB}/statsmodels/tsa/base/tests/
 ${PYSITELIB}/statsmodels/tsa/base/tests/test_datetools.py
 ${PYSITELIB}/statsmodels/tsa/base/tests/test_datetools.pyc
 ${PYSITELIB}/statsmodels/tsa/base/tests/test_datetools.pyo
+${PYSITELIB}/statsmodels/tsa/base/tests/test_tsa_indexes.py
+${PYSITELIB}/statsmodels/tsa/base/tests/test_tsa_indexes.pyc
+${PYSITELIB}/statsmodels/tsa/base/tests/test_tsa_indexes.pyo
 ${PYSITELIB}/statsmodels/tsa/base/tsa_model.py
 ${PYSITELIB}/statsmodels/tsa/base/tsa_model.pyc
 ${PYSITELIB}/statsmodels/tsa/base/tsa_model.pyo
@@ -1940,6 +2055,25 @@ ${PYSITELIB}/statsmodels/tsa/filters/tes
 ${PYSITELIB}/statsmodels/tsa/holtwinters.py
 ${PYSITELIB}/statsmodels/tsa/holtwinters.pyc
 ${PYSITELIB}/statsmodels/tsa/holtwinters.pyo
+${PYSITELIB}/statsmodels/tsa/innovations/__init__.py
+${PYSITELIB}/statsmodels/tsa/innovations/__init__.pyc
+${PYSITELIB}/statsmodels/tsa/innovations/__init__.pyo
+${PYSITELIB}/statsmodels/tsa/innovations/_arma_innovations.so
+${PYSITELIB}/statsmodels/tsa/innovations/api.py
+${PYSITELIB}/statsmodels/tsa/innovations/api.pyc
+${PYSITELIB}/statsmodels/tsa/innovations/api.pyo
+${PYSITELIB}/statsmodels/tsa/innovations/arma_innovations.py
+${PYSITELIB}/statsmodels/tsa/innovations/arma_innovations.pyc
+${PYSITELIB}/statsmodels/tsa/innovations/arma_innovations.pyo
+${PYSITELIB}/statsmodels/tsa/innovations/tests/__init__.py
+${PYSITELIB}/statsmodels/tsa/innovations/tests/__init__.pyc
+${PYSITELIB}/statsmodels/tsa/innovations/tests/__init__.pyo
+${PYSITELIB}/statsmodels/tsa/innovations/tests/test_arma_innovations.py
+${PYSITELIB}/statsmodels/tsa/innovations/tests/test_arma_innovations.pyc
+${PYSITELIB}/statsmodels/tsa/innovations/tests/test_arma_innovations.pyo
+${PYSITELIB}/statsmodels/tsa/innovations/tests/test_cython_arma_innovations_fast.py
+${PYSITELIB}/statsmodels/tsa/innovations/tests/test_cython_arma_innovations_fast.pyc
+${PYSITELIB}/statsmodels/tsa/innovations/tests/test_cython_arma_innovations_fast.pyo
 ${PYSITELIB}/statsmodels/tsa/interp/__init__.py
 ${PYSITELIB}/statsmodels/tsa/interp/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/interp/__init__.pyo
@@ -2003,19 +2137,36 @@ ${PYSITELIB}/statsmodels/tsa/statespace/
 ${PYSITELIB}/statsmodels/tsa/statespace/_filters/__init__.py
 ${PYSITELIB}/statsmodels/tsa/statespace/_filters/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/_filters/__init__.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/_filters/_conventional.so
+${PYSITELIB}/statsmodels/tsa/statespace/_filters/_inversions.so
+${PYSITELIB}/statsmodels/tsa/statespace/_filters/_univariate.so
+${PYSITELIB}/statsmodels/tsa/statespace/_filters/_univariate_diffuse.so
+${PYSITELIB}/statsmodels/tsa/statespace/_initialization.so
+${PYSITELIB}/statsmodels/tsa/statespace/_kalman_filter.so
+${PYSITELIB}/statsmodels/tsa/statespace/_kalman_smoother.so
 ${PYSITELIB}/statsmodels/tsa/statespace/_pykalman_smoother.py
 ${PYSITELIB}/statsmodels/tsa/statespace/_pykalman_smoother.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/_pykalman_smoother.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/_representation.so
+${PYSITELIB}/statsmodels/tsa/statespace/_simulation_smoother.so
 ${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/__init__.py
 ${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/__init__.pyo
-${PYSITELIB}/statsmodels/tsa/statespace/_statespace.so
+${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/_alternative.so
+${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/_classical.so
+${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/_conventional.so
+${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/_univariate.so
+${PYSITELIB}/statsmodels/tsa/statespace/_smoothers/_univariate_diffuse.so
+${PYSITELIB}/statsmodels/tsa/statespace/_tools.so
 ${PYSITELIB}/statsmodels/tsa/statespace/api.py
 ${PYSITELIB}/statsmodels/tsa/statespace/api.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/api.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/dynamic_factor.py
 ${PYSITELIB}/statsmodels/tsa/statespace/dynamic_factor.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/dynamic_factor.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/initialization.py
+${PYSITELIB}/statsmodels/tsa/statespace/initialization.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/initialization.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/kalman_filter.py
 ${PYSITELIB}/statsmodels/tsa/statespace/kalman_filter.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/kalman_filter.pyo
@@ -2040,6 +2191,9 @@ ${PYSITELIB}/statsmodels/tsa/statespace/
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/__init__.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/__init__.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/kfas_helpers.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/kfas_helpers.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/kfas_helpers.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/__init__.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/__init__.pyo
@@ -2050,6 +2204,16 @@ ${PYSITELIB}/statsmodels/tsa/statespace/
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_dynamic_factor.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_dynamic_factor.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_dynamic_factor_stata.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_common_level_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_common_level_restricted_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_dfm_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_local_level_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_local_linear_trend_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_local_linear_trend_missing_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_var1_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_var1_measurement_error_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_var1_missing_R.csv
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_exact_initial_var1_mixed_R.csv
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_intercepts_R.csv
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_kalman_filter.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_kalman_filter.pyc
@@ -2074,6 +2238,10 @@ ${PYSITELIB}/statsmodels/tsa/statespace/
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_structural.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_structural.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_structural.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_R.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_R.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_R.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_R_output.csv
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_misc.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_misc.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/results/results_var_misc.pyo
@@ -2088,12 +2256,21 @@ ${PYSITELIB}/statsmodels/tsa/statespace/
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_collapsed.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_collapsed.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_collapsed.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_concentrated.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_concentrated.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_concentrated.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_dynamic_factor.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_dynamic_factor.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_dynamic_factor.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_exact_diffuse_filtering.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_exact_diffuse_filtering.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_exact_diffuse_filtering.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_impulse_responses.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_impulse_responses.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_impulse_responses.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_initialization.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_initialization.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_initialization.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_kalman.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_kalman.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_kalman.pyo
@@ -2139,6 +2316,9 @@ ${PYSITELIB}/statsmodels/tsa/statespace/
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_univariate.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_univariate.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_univariate.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_var.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_var.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_var.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_varmax.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_varmax.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_varmax.pyo
@@ -2203,6 +2383,8 @@ ${PYSITELIB}/statsmodels/tsa/tests/resul
 ${PYSITELIB}/statsmodels/tsa/tests/results/datamlw_tls.py
 ${PYSITELIB}/statsmodels/tsa/tests/results/datamlw_tls.pyc
 ${PYSITELIB}/statsmodels/tsa/tests/results/datamlw_tls.pyo
+${PYSITELIB}/statsmodels/tsa/tests/results/housing-data.csv
+${PYSITELIB}/statsmodels/tsa/tests/results/lutkepohl2.dta
 ${PYSITELIB}/statsmodels/tsa/tests/results/make_arma.py
 ${PYSITELIB}/statsmodels/tsa/tests/results/make_arma.pyc
 ${PYSITELIB}/statsmodels/tsa/tests/results/make_arma.pyo
@@ -2227,6 +2409,9 @@ ${PYSITELIB}/statsmodels/tsa/tests/resul
 ${PYSITELIB}/statsmodels/tsa/tests/results/results_arma.py
 ${PYSITELIB}/statsmodels/tsa/tests/results/results_arma.pyc
 ${PYSITELIB}/statsmodels/tsa/tests/results/results_arma.pyo
+${PYSITELIB}/statsmodels/tsa/tests/results/results_arma_acf.py
+${PYSITELIB}/statsmodels/tsa/tests/results/results_arma_acf.pyc
+${PYSITELIB}/statsmodels/tsa/tests/results/results_arma_acf.pyo
 ${PYSITELIB}/statsmodels/tsa/tests/results/results_arma_forecasts.csv
 ${PYSITELIB}/statsmodels/tsa/tests/results/results_corrgram.csv
 ${PYSITELIB}/statsmodels/tsa/tests/results/results_process.py
@@ -2264,9 +2449,6 @@ ${PYSITELIB}/statsmodels/tsa/tests/test_
 ${PYSITELIB}/statsmodels/tsa/tests/test_stattools.py
 ${PYSITELIB}/statsmodels/tsa/tests/test_stattools.pyc
 ${PYSITELIB}/statsmodels/tsa/tests/test_stattools.pyo
-${PYSITELIB}/statsmodels/tsa/tests/test_tsa_indexes.py
-${PYSITELIB}/statsmodels/tsa/tests/test_tsa_indexes.pyc
-${PYSITELIB}/statsmodels/tsa/tests/test_tsa_indexes.pyo
 ${PYSITELIB}/statsmodels/tsa/tests/test_tsa_tools.py
 ${PYSITELIB}/statsmodels/tsa/tests/test_tsa_tools.pyc
 ${PYSITELIB}/statsmodels/tsa/tests/test_tsa_tools.pyo
@@ -2285,12 +2467,6 @@ ${PYSITELIB}/statsmodels/tsa/vector_ar/_
 ${PYSITELIB}/statsmodels/tsa/vector_ar/api.py
 ${PYSITELIB}/statsmodels/tsa/vector_ar/api.pyc
 ${PYSITELIB}/statsmodels/tsa/vector_ar/api.pyo
-${PYSITELIB}/statsmodels/tsa/vector_ar/data/e1.dat
-${PYSITELIB}/statsmodels/tsa/vector_ar/data/e2.dat
-${PYSITELIB}/statsmodels/tsa/vector_ar/data/e3.dat
-${PYSITELIB}/statsmodels/tsa/vector_ar/data/e4.dat
-${PYSITELIB}/statsmodels/tsa/vector_ar/data/e5.dat
-${PYSITELIB}/statsmodels/tsa/vector_ar/data/e6.dat
 ${PYSITELIB}/statsmodels/tsa/vector_ar/dynamic.py
 ${PYSITELIB}/statsmodels/tsa/vector_ar/dynamic.pyc
 ${PYSITELIB}/statsmodels/tsa/vector_ar/dynamic.pyo
@@ -2503,6 +2679,12 @@ ${PYSITELIB}/statsmodels/tsa/vector_ar/t
 ${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/__init__.py
 ${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/__init__.pyc
 ${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/__init__.pyo
+${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/e1.dat
+${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/e2.dat
+${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/e3.dat
+${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/e4.dat
+${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/e5.dat
+${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/e6.dat
 ${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/results_svar.py
 ${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/results_svar.pyc
 ${PYSITELIB}/statsmodels/tsa/vector_ar/tests/results/results_svar.pyo
@@ -2546,6 +2728,3 @@ ${PYSITELIB}/statsmodels/tsa/vector_ar/v
 ${PYSITELIB}/statsmodels/tsa/x13.py
 ${PYSITELIB}/statsmodels/tsa/x13.pyc
 ${PYSITELIB}/statsmodels/tsa/x13.pyo
-${PYSITELIB}/statsmodels/version.py
-${PYSITELIB}/statsmodels/version.pyc
-${PYSITELIB}/statsmodels/version.pyo

Index: pkgsrc/math/py-statsmodels/distinfo
diff -u pkgsrc/math/py-statsmodels/distinfo:1.3 pkgsrc/math/py-statsmodels/distinfo:1.4
--- pkgsrc/math/py-statsmodels/distinfo:1.3     Thu Jul  5 13:09:11 2018
+++ pkgsrc/math/py-statsmodels/distinfo Wed Jan  8 01:23:22 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2018/07/05 13:09:11 adam Exp $
+$NetBSD: distinfo,v 1.4 2020/01/08 01:23:22 minskim Exp $
 
-SHA1 (statsmodels-0.9.0.tar.gz) = a41d329cc0edf686904f230aa8bb3fa388217498
-RMD160 (statsmodels-0.9.0.tar.gz) = cc59ed63528df7c0a6eeb27a3ac0439e3ef5f42f
-SHA512 (statsmodels-0.9.0.tar.gz) = a0310129ee915dce5006e4e40190d19c3a09facad398ff089fa4a244d51a035f9591267fd8d34a00ce82e4cab893df96787596f9d350d878e97a0bb3305f1bd5
-Size (statsmodels-0.9.0.tar.gz) = 12658359 bytes
+SHA1 (statsmodels-0.10.2.tar.gz) = 084998f7bb0b42d48e73820b7f84d5c37782ce2e
+RMD160 (statsmodels-0.10.2.tar.gz) = 9b437ff8df046770847ac865d4c4b55b7e1b4e3b
+SHA512 (statsmodels-0.10.2.tar.gz) = bd1c0784b0b17a3ca69fef5848f5eea8dcf76b1943599a5e5c285e45b7fcc7e44c0e388f007913d420ff6f3cb66a653d1c43e6e8addef534ff5572fa69ffb54a
+Size (statsmodels-0.10.2.tar.gz) = 14065612 bytes



Home | Main Index | Thread Index | Old Index