Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 1, 2020 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/185eeb6d8b75234acfc91338e3ba8bab to your computer and use it in GitHub Desktop.
Save r-ryantm/185eeb6d8b75234acfc91338e3ba8bab to your computer and use it in GitHub Desktop.
/nix/store/bgl7kq1ldsism9ijlrqcwx2ddqrpvdjz-python3.7-statsmodels-0.12.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── statsmodels
│   │   ├── api.py
│   │   ├── base
│   │   │   ├── _constraints.py
│   │   │   ├── covtype.py
│   │   │   ├── data.py
│   │   │   ├── distributed_estimation.py
│   │   │   ├── elastic_net.py
│   │   │   ├── __init__.py
│   │   │   ├── l1_cvxopt.py
│   │   │   ├── l1_slsqp.py
│   │   │   ├── l1_solvers_common.py
│   │   │   ├── model.py
│   │   │   ├── optimizer.py
│   │   │   ├── _parameter_inference.py
│   │   │   ├── _penalized.py
│   │   │   ├── _penalties.py
│   │   │   ├── __pycache__
│   │   │   │   ├── _constraints.cpython-37.pyc
│   │   │   │   ├── covtype.cpython-37.pyc
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   ├── distributed_estimation.cpython-37.pyc
│   │   │   │   ├── elastic_net.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── l1_cvxopt.cpython-37.pyc
│   │   │   │   ├── l1_slsqp.cpython-37.pyc
│   │   │   │   ├── l1_solvers_common.cpython-37.pyc
│   │   │   │   ├── model.cpython-37.pyc
│   │   │   │   ├── optimizer.cpython-37.pyc
│   │   │   │   ├── _parameter_inference.cpython-37.pyc
│   │   │   │   ├── _penalized.cpython-37.pyc
│   │   │   │   ├── _penalties.cpython-37.pyc
│   │   │   │   ├── _screening.cpython-37.pyc
│   │   │   │   ├── transform.cpython-37.pyc
│   │   │   │   └── wrapper.cpython-37.pyc
│   │   │   ├── _screening.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_data.cpython-37.pyc
│   │   │   │   │   ├── test_distributed_estimation.cpython-37.pyc
│   │   │   │   │   ├── test_generic_methods.cpython-37.pyc
│   │   │   │   │   ├── test_optimize.cpython-37.pyc
│   │   │   │   │   ├── test_penalized.cpython-37.pyc
│   │   │   │   │   ├── test_penalties.cpython-37.pyc
│   │   │   │   │   ├── test_predict.cpython-37.pyc
│   │   │   │   │   ├── test_screening.cpython-37.pyc
│   │   │   │   │   ├── test_shrink_pickle.cpython-37.pyc
│   │   │   │   │   └── test_transform.cpython-37.pyc
│   │   │   │   ├── 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
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── numpy.cpython-37.pyc
│   │   │   │   ├── pandas.cpython-37.pyc
│   │   │   │   ├── platform.cpython-37.pyc
│   │   │   │   ├── python.cpython-37.pyc
│   │   │   │   └── scipy.cpython-37.pyc
│   │   │   ├── python.py
│   │   │   ├── scipy.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_itercompat.cpython-37.pyc
│   │   │   │   └── test_scipy_compat.cpython-37.pyc
│   │   │   ├── test_itercompat.py
│   │   │   └── test_scipy_compat.py
│   │   ├── conftest.py
│   │   ├── datasets
│   │   │   ├── anes96
│   │   │   │   ├── anes96.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── cancer
│   │   │   │   ├── cancer.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── ccard
│   │   │   │   ├── ccard.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── china_smoking
│   │   │   │   ├── china_smoking.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── co2
│   │   │   │   ├── co2.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── committee
│   │   │   │   ├── committee.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── copper
│   │   │   │   ├── copper.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── cpunish
│   │   │   │   ├── cpunish.csv
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── elec_equip
│   │   │   │   ├── data.py
│   │   │   │   ├── elec_equip.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── elnino
│   │   │   │   ├── data.py
│   │   │   │   ├── elnino.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── engel
│   │   │   │   ├── data.py
│   │   │   │   ├── engel.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── fair
│   │   │   │   ├── data.py
│   │   │   │   ├── fair.csv
│   │   │   │   ├── fair_pt.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── fertility
│   │   │   │   ├── data.py
│   │   │   │   ├── fertility.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── grunfeld
│   │   │   │   ├── data.py
│   │   │   │   ├── grunfeld.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── heart
│   │   │   │   ├── data.py
│   │   │   │   ├── heart.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── __init__.py
│   │   │   ├── interest_inflation
│   │   │   │   ├── data.py
│   │   │   │   ├── E6.csv
│   │   │   │   ├── E6_jmulti.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── longley
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── longley.csv
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── macrodata
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── macrodata.csv
│   │   │   │   ├── macrodata.dta
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── modechoice
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── modechoice.csv
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── nile
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── nile.csv
│   │   │   │   └── __pycache__
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── template_data.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── randhie
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── randhie.csv
│   │   │   ├── scotland
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── scotvote.csv
│   │   │   ├── spector
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── spector.csv
│   │   │   ├── stackloss
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── stackloss.csv
│   │   │   ├── star98
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── star98.csv
│   │   │   ├── statecrime
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── statecrime.csv
│   │   │   ├── strikes
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── strikes.csv
│   │   │   ├── sunspots
│   │   │   │   ├── data.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── sunspots.csv
│   │   │   ├── template_data.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_data.cpython-37.pyc
│   │   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   │   ├── test_data.py
│   │   │   │   └── test_utils.py
│   │   │   └── utils.py
│   │   ├── discrete
│   │   │   ├── conditional_models.py
│   │   │   ├── count_model.py
│   │   │   ├── _diagnostics_count.py
│   │   │   ├── discrete_margins.py
│   │   │   ├── discrete_model.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── conditional_models.cpython-37.pyc
│   │   │   │   ├── count_model.cpython-37.pyc
│   │   │   │   ├── _diagnostics_count.cpython-37.pyc
│   │   │   │   ├── discrete_margins.cpython-37.pyc
│   │   │   │   ├── discrete_model.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_conditional.cpython-37.pyc
│   │   │   │   ├── test_constrained.cpython-37.pyc
│   │   │   │   ├── test_count_model.cpython-37.pyc
│   │   │   │   ├── test_diagnostic.cpython-37.pyc
│   │   │   │   ├── test_discrete.cpython-37.pyc
│   │   │   │   ├── test_margins.cpython-37.pyc
│   │   │   │   └── test_sandwich_cov.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mnlogit_resid.csv
│   │   │   │   ├── mn_logit_summary.txt
│   │   │   │   ├── nbinom_resids.csv
│   │   │   │   ├── phat_mnlogit.csv
│   │   │   │   ├── poisson_resid.csv
│   │   │   │   ├── predict_prob_poisson.csv
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── results_count_margins.cpython-37.pyc
│   │   │   │   │   ├── results_count_robust_cluster.cpython-37.pyc
│   │   │   │   │   ├── results_discrete.cpython-37.pyc
│   │   │   │   │   ├── results_glm_logit_constrained.cpython-37.pyc
│   │   │   │   │   └── results_poisson_constrained.cpython-37.pyc
│   │   │   │   ├── 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
│   │   │   ├── discrete.py
│   │   │   ├── edgeworth.py
│   │   │   ├── empirical_distribution.py
│   │   │   ├── __init__.py
│   │   │   ├── mixture_rvs.py
│   │   │   ├── __pycache__
│   │   │   │   ├── discrete.cpython-37.pyc
│   │   │   │   ├── edgeworth.cpython-37.pyc
│   │   │   │   ├── empirical_distribution.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── mixture_rvs.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_discrete.cpython-37.pyc
│   │   │   │   ├── test_ecdf.cpython-37.pyc
│   │   │   │   ├── test_edgeworth.cpython-37.pyc
│   │   │   │   └── test_mixture.cpython-37.pyc
│   │   │   ├── test_discrete.py
│   │   │   ├── test_ecdf.py
│   │   │   ├── test_edgeworth.py
│   │   │   └── test_mixture.py
│   │   ├── duration
│   │   │   ├── api.py
│   │   │   ├── hazard_regression.py
│   │   │   ├── __init__.py
│   │   │   ├── _kernel_estimates.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── hazard_regression.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── _kernel_estimates.cpython-37.pyc
│   │   │   │   └── survfunc.cpython-37.pyc
│   │   │   ├── survfunc.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_phreg.cpython-37.pyc
│   │   │   │   └── test_survfunc.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── bmt.csv
│   │   │   │   ├── bmt_results.csv
│   │   │   │   ├── __init__.py
│   │   │   │   ├── phreg_gentests.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── phreg_gentests.cpython-37.pyc
│   │   │   │   │   ├── survival_enet_r_results.cpython-37.pyc
│   │   │   │   │   └── survival_r_results.cpython-37.pyc
│   │   │   │   ├── 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
│   │   │   ├── test_phreg.py
│   │   │   └── test_survfunc.py
│   │   ├── emplike
│   │   │   ├── aft_el.py
│   │   │   ├── api.py
│   │   │   ├── descriptive.py
│   │   │   ├── elanova.py
│   │   │   ├── elregress.py
│   │   │   ├── __init__.py
│   │   │   ├── originregress.py
│   │   │   ├── __pycache__
│   │   │   │   ├── aft_el.cpython-37.pyc
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── descriptive.cpython-37.pyc
│   │   │   │   ├── elanova.cpython-37.pyc
│   │   │   │   ├── elregress.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── originregress.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_aft.cpython-37.pyc
│   │   │   │   ├── test_anova.cpython-37.pyc
│   │   │   │   ├── test_descriptive.cpython-37.pyc
│   │   │   │   ├── test_origin.cpython-37.pyc
│   │   │   │   └── test_regression.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── el_results.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── el_results.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── test_aft.py
│   │   │   ├── test_anova.py
│   │   │   ├── test_descriptive.py
│   │   │   ├── test_origin.py
│   │   │   └── test_regression.py
│   │   ├── formula
│   │   │   ├── api.py
│   │   │   ├── formulatools.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── formulatools.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── test_formula.cpython-37.pyc
│   │   │   └── test_formula.py
│   │   ├── gam
│   │   │   ├── api.py
│   │   │   ├── gam_cross_validation
│   │   │   │   ├── cross_validators.py
│   │   │   │   ├── gam_cross_validation.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── cross_validators.cpython-37.pyc
│   │   │   │   ├── gam_cross_validation.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── gam_penalties.py
│   │   │   ├── generalized_additive_model.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── gam_penalties.cpython-37.pyc
│   │   │   │   ├── generalized_additive_model.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── smooth_basis.cpython-37.pyc
│   │   │   ├── smooth_basis.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_gam.cpython-37.pyc
│   │   │   │   ├── test_penalized.cpython-37.pyc
│   │   │   │   └── test_smooth_basis.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── autos.csv
│   │   │   │   ├── autos_exog.csv
│   │   │   │   ├── autos_predict.csv
│   │   │   │   ├── cubic_cyclic_splines_from_mgcv.csv
│   │   │   │   ├── gam_PIRLS_results.csv
│   │   │   │   ├── __init__.py
│   │   │   │   ├── logit_gam_mgcv.csv
│   │   │   │   ├── motorcycle.csv
│   │   │   │   ├── prediction_from_mgcv.csv
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── results_mpg_bs.cpython-37.pyc
│   │   │   │   │   ├── results_mpg_bs_poisson.cpython-37.pyc
│   │   │   │   │   └── results_pls.cpython-37.pyc
│   │   │   │   ├── results_mpg_bs_poisson.py
│   │   │   │   ├── results_mpg_bs.py
│   │   │   │   └── results_pls.py
│   │   │   ├── test_gam.py
│   │   │   ├── test_penalized.py
│   │   │   └── test_smooth_basis.py
│   │   ├── genmod
│   │   │   ├── api.py
│   │   │   ├── bayes_mixed_glm.py
│   │   │   ├── cov_struct.py
│   │   │   ├── families
│   │   │   │   ├── family.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── links.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── family.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── links.cpython-37.pyc
│   │   │   │   │   └── varfuncs.cpython-37.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_link.cpython-37.pyc
│   │   │   │   │   └── test_link.py
│   │   │   │   └── varfuncs.py
│   │   │   ├── generalized_estimating_equations.py
│   │   │   ├── generalized_linear_model.py
│   │   │   ├── __init__.py
│   │   │   ├── _prediction.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── bayes_mixed_glm.cpython-37.pyc
│   │   │   │   ├── cov_struct.cpython-37.pyc
│   │   │   │   ├── generalized_estimating_equations.cpython-37.pyc
│   │   │   │   ├── generalized_linear_model.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── _prediction.cpython-37.pyc
│   │   │   │   ├── qif.cpython-37.pyc
│   │   │   │   └── _tweedie_compound_poisson.cpython-37.pyc
│   │   │   ├── qif.py
│   │   │   ├── tests
│   │   │   │   ├── gee_categorical_simulation_check.py
│   │   │   │   ├── gee_gaussian_simulation_check.py
│   │   │   │   ├── gee_poisson_simulation_check.py
│   │   │   │   ├── gee_simulation_check.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── gee_categorical_simulation_check.cpython-37.pyc
│   │   │   │   │   ├── gee_gaussian_simulation_check.cpython-37.pyc
│   │   │   │   │   ├── gee_poisson_simulation_check.cpython-37.pyc
│   │   │   │   │   ├── gee_simulation_check.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_bayes_mixed_glm.cpython-37.pyc
│   │   │   │   │   ├── test_constrained.cpython-37.pyc
│   │   │   │   │   ├── test_gee.cpython-37.pyc
│   │   │   │   │   ├── test_gee_glm.cpython-37.pyc
│   │   │   │   │   ├── test_glm.cpython-37.pyc
│   │   │   │   │   ├── test_glm_weights.cpython-37.pyc
│   │   │   │   │   ├── test_qif.cpython-37.pyc
│   │   │   │   │   └── test_score_test.cpython-37.pyc
│   │   │   │   ├── results
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── glmnet_r_results.py
│   │   │   │   │   ├── glm_test_resids.py
│   │   │   │   │   ├── igaussident_resids.csv
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── inv_gaussian.csv
│   │   │   │   │   ├── iris.csv
│   │   │   │   │   ├── medparlogresids.csv
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── elastic_net_generate_tests.cpython-37.pyc
│   │   │   │   │   │   ├── gee_generate_tests.cpython-37.pyc
│   │   │   │   │   │   ├── glmnet_r_results.cpython-37.pyc
│   │   │   │   │   │   ├── glm_test_resids.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── res_R_var_weight.cpython-37.pyc
│   │   │   │   │   │   ├── results_glm.cpython-37.pyc
│   │   │   │   │   │   └── results_glm_poisson_weights.cpython-37.pyc
│   │   │   │   │   ├── res_R_var_weight.py
│   │   │   │   │   ├── results_glm_poisson_weights.py
│   │   │   │   │   ├── results_glm.py
│   │   │   │   │   ├── results_tweedie_aweights_nonrobust.csv
│   │   │   │   │   ├── stata_cancer_glm.csv
│   │   │   │   │   ├── stata_lbw_glm.csv
│   │   │   │   │   └── stata_medpar1_glm.csv
│   │   │   │   ├── test_bayes_mixed_glm.py
│   │   │   │   ├── test_constrained.py
│   │   │   │   ├── test_gee_glm.py
│   │   │   │   ├── test_gee.py
│   │   │   │   ├── test_glm.py
│   │   │   │   ├── test_glm_weights.py
│   │   │   │   ├── test_qif.py
│   │   │   │   └── test_score_test.py
│   │   │   └── _tweedie_compound_poisson.py
│   │   ├── graphics
│   │   │   ├── agreement.py
│   │   │   ├── api.py
│   │   │   ├── boxplots.py
│   │   │   ├── correlation.py
│   │   │   ├── dotplots.py
│   │   │   ├── factorplots.py
│   │   │   ├── functional.py
│   │   │   ├── gofplots.py
│   │   │   ├── __init__.py
│   │   │   ├── mosaicplot.py
│   │   │   ├── plot_grids.py
│   │   │   ├── plottools.py
│   │   │   ├── __pycache__
│   │   │   │   ├── agreement.cpython-37.pyc
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── boxplots.cpython-37.pyc
│   │   │   │   ├── correlation.cpython-37.pyc
│   │   │   │   ├── dotplots.cpython-37.pyc
│   │   │   │   ├── factorplots.cpython-37.pyc
│   │   │   │   ├── functional.cpython-37.pyc
│   │   │   │   ├── gofplots.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mosaicplot.cpython-37.pyc
│   │   │   │   ├── plot_grids.cpython-37.pyc
│   │   │   │   ├── plottools.cpython-37.pyc
│   │   │   │   ├── regressionplots.cpython-37.pyc
│   │   │   │   ├── _regressionplots_doc.cpython-37.pyc
│   │   │   │   ├── tsaplots.cpython-37.pyc
│   │   │   │   ├── tukeyplot.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── _regressionplots_doc.py
│   │   │   ├── regressionplots.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_agreement.cpython-37.pyc
│   │   │   │   │   ├── test_boxplots.cpython-37.pyc
│   │   │   │   │   ├── test_correlation.cpython-37.pyc
│   │   │   │   │   ├── test_dotplot.cpython-37.pyc
│   │   │   │   │   ├── test_factorplots.cpython-37.pyc
│   │   │   │   │   ├── test_functional.cpython-37.pyc
│   │   │   │   │   ├── test_gofplots.cpython-37.pyc
│   │   │   │   │   ├── test_mosaicplot.cpython-37.pyc
│   │   │   │   │   ├── test_regressionplots.cpython-37.pyc
│   │   │   │   │   └── test_tsaplots.cpython-37.pyc
│   │   │   │   ├── 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
│   │   │   ├── bayes_mi.py
│   │   │   ├── __init__.py
│   │   │   ├── mice.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bayes_mi.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mice.cpython-37.pyc
│   │   │   │   └── ros.cpython-37.pyc
│   │   │   ├── ros.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_bayes_mi.cpython-37.pyc
│   │   │   │   ├── test_mice.cpython-37.pyc
│   │   │   │   └── test_ros.cpython-37.pyc
│   │   │   ├── test_bayes_mi.py
│   │   │   ├── test_mice.py
│   │   │   └── test_ros.py
│   │   ├── __init__.py
│   │   ├── interface
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── iolib
│   │   │   ├── api.py
│   │   │   ├── foreign.py
│   │   │   ├── __init__.py
│   │   │   ├── openfile.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── foreign.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── openfile.cpython-37.pyc
│   │   │   │   ├── smpickle.cpython-37.pyc
│   │   │   │   ├── stata_summary_examples.cpython-37.pyc
│   │   │   │   ├── summary2.cpython-37.pyc
│   │   │   │   ├── summary.cpython-37.pyc
│   │   │   │   ├── table.cpython-37.pyc
│   │   │   │   └── tableformatting.cpython-37.pyc
│   │   │   ├── smpickle.py
│   │   │   ├── stata_summary_examples.py
│   │   │   ├── summary2.py
│   │   │   ├── summary.py
│   │   │   ├── tableformatting.py
│   │   │   ├── table.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_foreign.cpython-37.pyc
│   │   │   │   ├── test_pickle.cpython-37.pyc
│   │   │   │   ├── test_summary2.cpython-37.pyc
│   │   │   │   ├── test_summary.cpython-37.pyc
│   │   │   │   ├── test_summary_old.cpython-37.pyc
│   │   │   │   ├── test_table.cpython-37.pyc
│   │   │   │   └── test_table_econpy.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── data_missing.dta
│   │   │   │   ├── __init__.py
│   │   │   │   ├── macrodata.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── macrodata.cpython-37.pyc
│   │   │   │   └── time_series_examples.dta
│   │   │   ├── test_foreign.py
│   │   │   ├── test_pickle.py
│   │   │   ├── test_summary2.py
│   │   │   ├── test_summary_old.py
│   │   │   ├── test_summary.py
│   │   │   ├── test_table_econpy.py
│   │   │   └── test_table.py
│   │   ├── LICENSE.txt
│   │   ├── miscmodels
│   │   │   ├── api.py
│   │   │   ├── count.py
│   │   │   ├── __init__.py
│   │   │   ├── nonlinls.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── count.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── nonlinls.cpython-37.pyc
│   │   │   │   ├── tmodel.cpython-37.pyc
│   │   │   │   └── try_mlecov.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── results_tmodel.cpython-37.pyc
│   │   │   │   │   ├── test_generic_mle.cpython-37.pyc
│   │   │   │   │   ├── test_poisson.cpython-37.pyc
│   │   │   │   │   ├── test_tarma.cpython-37.pyc
│   │   │   │   │   └── test_tmodel.cpython-37.pyc
│   │   │   │   ├── results_tmodel.py
│   │   │   │   ├── test_generic_mle.py
│   │   │   │   ├── test_poisson.py
│   │   │   │   ├── test_tarma.py
│   │   │   │   └── test_tmodel.py
│   │   │   ├── tmodel.py
│   │   │   └── try_mlecov.py
│   │   ├── multivariate
│   │   │   ├── api.py
│   │   │   ├── cancorr.py
│   │   │   ├── factor.py
│   │   │   ├── factor_rotation
│   │   │   │   ├── _analytic_rotation.py
│   │   │   │   ├── _gpa_rotation.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── _analytic_rotation.cpython-37.pyc
│   │   │   │   │   ├── _gpa_rotation.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── _wrappers.cpython-37.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_rotation.cpython-37.pyc
│   │   │   │   │   └── test_rotation.py
│   │   │   │   └── _wrappers.py
│   │   │   ├── __init__.py
│   │   │   ├── manova.py
│   │   │   ├── multivariate_ols.py
│   │   │   ├── pca.py
│   │   │   ├── plots.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── cancorr.cpython-37.pyc
│   │   │   │   ├── factor.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── manova.cpython-37.pyc
│   │   │   │   ├── multivariate_ols.cpython-37.pyc
│   │   │   │   ├── pca.cpython-37.pyc
│   │   │   │   └── plots.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_cancorr.cpython-37.pyc
│   │   │   │   ├── test_factor.cpython-37.pyc
│   │   │   │   ├── test_manova.cpython-37.pyc
│   │   │   │   ├── test_ml_factor.cpython-37.pyc
│   │   │   │   ├── test_multivariate_ols.cpython-37.pyc
│   │   │   │   └── test_pca.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── datamlw.py
│   │   │   │   ├── factor_data.csv
│   │   │   │   ├── factors_stata.csv
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── datamlw.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── test_cancorr.py
│   │   │   ├── test_factor.py
│   │   │   ├── test_manova.py
│   │   │   ├── test_ml_factor.py
│   │   │   ├── test_multivariate_ols.py
│   │   │   └── test_pca.py
│   │   ├── nonparametric
│   │   │   ├── api.py
│   │   │   ├── bandwidths.py
│   │   │   ├── __init__.py
│   │   │   ├── kde.py
│   │   │   ├── kdetools.py
│   │   │   ├── _kernel_base.py
│   │   │   ├── kernel_density.py
│   │   │   ├── kernel_regression.py
│   │   │   ├── kernels.py
│   │   │   ├── linbin.cpython-37m-x86_64-linux-gnu.so
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── bandwidths.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── kde.cpython-37.pyc
│   │   │   │   ├── kdetools.cpython-37.pyc
│   │   │   │   ├── _kernel_base.cpython-37.pyc
│   │   │   │   ├── kernel_density.cpython-37.pyc
│   │   │   │   ├── kernel_regression.cpython-37.pyc
│   │   │   │   ├── kernels.cpython-37.pyc
│   │   │   │   ├── smoothers_lowess.cpython-37.pyc
│   │   │   │   └── smoothers_lowess_old.cpython-37.pyc
│   │   │   ├── _smoothers_lowess.cpython-37m-x86_64-linux-gnu.so
│   │   │   ├── smoothers_lowess_old.py
│   │   │   ├── smoothers_lowess.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_bandwidths.cpython-37.pyc
│   │   │   │   ├── test_kde.cpython-37.pyc
│   │   │   │   ├── test_kernel_density.cpython-37.pyc
│   │   │   │   ├── test_kernel_regression.cpython-37.pyc
│   │   │   │   ├── test_kernels.cpython-37.pyc
│   │   │   │   └── test_lowess.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── 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_simple.csv
│   │   │   ├── test_bandwidths.py
│   │   │   ├── test_kde.py
│   │   │   ├── test_kernel_density.py
│   │   │   ├── test_kernel_regression.py
│   │   │   ├── test_kernels.py
│   │   │   └── test_lowess.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── conftest.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── _version.cpython-37.pyc
│   │   ├── regression
│   │   │   ├── dimred.py
│   │   │   ├── feasible_gls.py
│   │   │   ├── __init__.py
│   │   │   ├── linear_model.py
│   │   │   ├── mixed_linear_model.py
│   │   │   ├── _prediction.py
│   │   │   ├── process_regression.py
│   │   │   ├── __pycache__
│   │   │   │   ├── dimred.cpython-37.pyc
│   │   │   │   ├── feasible_gls.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── linear_model.cpython-37.pyc
│   │   │   │   ├── mixed_linear_model.cpython-37.pyc
│   │   │   │   ├── _prediction.cpython-37.pyc
│   │   │   │   ├── process_regression.cpython-37.pyc
│   │   │   │   ├── quantile_regression.cpython-37.pyc
│   │   │   │   ├── recursive_ls.cpython-37.pyc
│   │   │   │   ├── rolling.cpython-37.pyc
│   │   │   │   └── _tools.cpython-37.pyc
│   │   │   ├── quantile_regression.py
│   │   │   ├── recursive_ls.py
│   │   │   ├── rolling.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_cov.cpython-37.pyc
│   │   │   │   │   ├── test_dimred.cpython-37.pyc
│   │   │   │   │   ├── test_glsar_gretl.cpython-37.pyc
│   │   │   │   │   ├── test_glsar_stata.cpython-37.pyc
│   │   │   │   │   ├── test_lme.cpython-37.pyc
│   │   │   │   │   ├── test_predict.cpython-37.pyc
│   │   │   │   │   ├── test_processreg.cpython-37.pyc
│   │   │   │   │   ├── test_quantile_regression.cpython-37.pyc
│   │   │   │   │   ├── test_recursive_ls.cpython-37.pyc
│   │   │   │   │   ├── test_regression.cpython-37.pyc
│   │   │   │   │   ├── test_robustcov.cpython-37.pyc
│   │   │   │   │   ├── test_rolling.cpython-37.pyc
│   │   │   │   │   ├── test_theil.cpython-37.pyc
│   │   │   │   │   └── test_tools.cpython-37.pyc
│   │   │   │   ├── results
│   │   │   │   │   ├── dietox.csv
│   │   │   │   │   ├── generate_lasso.py
│   │   │   │   │   ├── generate_lme.py
│   │   │   │   │   ├── glmnet_r_results.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── lasso_data.csv
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── macro_gr_corc_stata.py
│   │   │   │   │   ├── pastes.csv
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── generate_lasso.cpython-37.pyc
│   │   │   │   │   │   ├── generate_lme.cpython-37.pyc
│   │   │   │   │   │   ├── glmnet_r_results.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── lme_r_results.cpython-37.pyc
│   │   │   │   │   │   ├── macro_gr_corc_stata.cpython-37.pyc
│   │   │   │   │   │   ├── results_grunfeld_ols_robust_cluster.cpython-37.pyc
│   │   │   │   │   │   ├── results_macro_ols_robust.cpython-37.pyc
│   │   │   │   │   │   ├── results_quantile_regression.cpython-37.pyc
│   │   │   │   │   │   ├── results_regression.cpython-37.pyc
│   │   │   │   │   │   └── results_theil_textile.cpython-37.pyc
│   │   │   │   │   ├── 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
│   │   │   │   │   └── 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
│   │   │   └── _tools.py
│   │   ├── robust
│   │   │   ├── __init__.py
│   │   │   ├── norms.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── norms.cpython-37.pyc
│   │   │   │   ├── robust_linear_model.cpython-37.pyc
│   │   │   │   └── scale.cpython-37.pyc
│   │   │   ├── _qn.cpython-37m-x86_64-linux-gnu.so
│   │   │   ├── robust_linear_model.py
│   │   │   ├── scale.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_rlm.cpython-37.pyc
│   │   │   │   └── test_scale.cpython-37.pyc
│   │   │   ├── results
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── results_rlm.cpython-37.pyc
│   │   │   │   └── results_rlm.py
│   │   │   ├── test_rlm.py
│   │   │   └── test_scale.py
│   │   ├── sandbox
│   │   │   ├── archive
│   │   │   │   ├── __init__.py
│   │   │   │   ├── linalg_covmat.py
│   │   │   │   ├── linalg_decomp_1.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── linalg_covmat.cpython-37.pyc
│   │   │   │   │   ├── linalg_decomp_1.cpython-37.pyc
│   │   │   │   │   └── tsa.cpython-37.pyc
│   │   │   │   └── tsa.py
│   │   │   ├── bspline.py
│   │   │   ├── datarich
│   │   │   │   ├── factormodels.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── factormodels.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── descstats.py
│   │   │   ├── distributions
│   │   │   │   ├── copula.py
│   │   │   │   ├── estimators.py
│   │   │   │   ├── examples
│   │   │   │   │   ├── ex_extras.py
│   │   │   │   │   ├── ex_fitfr.py
│   │   │   │   │   ├── ex_gof.py
│   │   │   │   │   ├── ex_mvelliptical.py
│   │   │   │   │   ├── ex_transf2.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── matchdist.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── ex_extras.cpython-37.pyc
│   │   │   │   │   ├── ex_fitfr.cpython-37.pyc
│   │   │   │   │   ├── ex_gof.cpython-37.pyc
│   │   │   │   │   ├── ex_mvelliptical.cpython-37.pyc
│   │   │   │   │   ├── ex_transf2.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── matchdist.cpython-37.pyc
│   │   │   │   ├── extras.py
│   │   │   │   ├── genpareto.py
│   │   │   │   ├── gof_new.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── multivariate.py
│   │   │   │   ├── mv_measures.py
│   │   │   │   ├── mv_normal.py
│   │   │   │   ├── otherdist.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── copula.cpython-37.pyc
│   │   │   │   │   ├── estimators.cpython-37.pyc
│   │   │   │   │   ├── extras.cpython-37.pyc
│   │   │   │   │   ├── genpareto.cpython-37.pyc
│   │   │   │   │   ├── gof_new.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── multivariate.cpython-37.pyc
│   │   │   │   │   ├── mv_measures.cpython-37.pyc
│   │   │   │   │   ├── mv_normal.cpython-37.pyc
│   │   │   │   │   ├── otherdist.cpython-37.pyc
│   │   │   │   │   ├── quantize.cpython-37.pyc
│   │   │   │   │   ├── sppatch.cpython-37.pyc
│   │   │   │   │   ├── transformed.cpython-37.pyc
│   │   │   │   │   ├── transform_functions.cpython-37.pyc
│   │   │   │   │   ├── try_max.cpython-37.pyc
│   │   │   │   │   └── try_pot.cpython-37.pyc
│   │   │   │   ├── quantize.py
│   │   │   │   ├── sppatch.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── check_moments.py
│   │   │   │   │   ├── distparams.py
│   │   │   │   │   ├── _est_fit.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── check_moments.cpython-37.pyc
│   │   │   │   │   │   ├── distparams.cpython-37.pyc
│   │   │   │   │   │   ├── _est_fit.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_extras.cpython-37.pyc
│   │   │   │   │   │   ├── test_gof_new.cpython-37.pyc
│   │   │   │   │   │   ├── test_multivariate.cpython-37.pyc
│   │   │   │   │   │   ├── test_norm_expan.cpython-37.pyc
│   │   │   │   │   │   └── test_transf.cpython-37.pyc
│   │   │   │   │   ├── test_extras.py
│   │   │   │   │   ├── test_gof_new.py
│   │   │   │   │   ├── test_multivariate.py
│   │   │   │   │   ├── test_norm_expan.py
│   │   │   │   │   └── test_transf.py
│   │   │   │   ├── transformed.py
│   │   │   │   ├── transform_functions.py
│   │   │   │   ├── try_max.py
│   │   │   │   └── try_pot.py
│   │   │   ├── gam.py
│   │   │   ├── infotheo.py
│   │   │   ├── __init__.py
│   │   │   ├── mcevaluate
│   │   │   │   ├── arma.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── arma.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── mle.py
│   │   │   ├── multilinear.py
│   │   │   ├── nonparametric
│   │   │   │   ├── densityorthopoly.py
│   │   │   │   ├── dgp_examples.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── kde2.py
│   │   │   │   ├── kdecovclass.py
│   │   │   │   ├── kernel_extras.py
│   │   │   │   ├── kernels.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── densityorthopoly.cpython-37.pyc
│   │   │   │   │   ├── dgp_examples.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── kde2.cpython-37.pyc
│   │   │   │   │   ├── kdecovclass.cpython-37.pyc
│   │   │   │   │   ├── kernel_extras.cpython-37.pyc
│   │   │   │   │   ├── kernels.cpython-37.pyc
│   │   │   │   │   ├── smoothers.cpython-37.pyc
│   │   │   │   │   └── testdata.cpython-37.pyc
│   │   │   │   ├── smoothers.py
│   │   │   │   ├── testdata.py
│   │   │   │   └── tests
│   │   │   │   ├── ex_gam_am_new.py
│   │   │   │   ├── ex_gam_new.py
│   │   │   │   ├── ex_smoothers.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── ex_gam_am_new.cpython-37.pyc
│   │   │   │   │   ├── ex_gam_new.cpython-37.pyc
│   │   │   │   │   ├── ex_smoothers.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_kernel_extras.cpython-37.pyc
│   │   │   │   │   └── test_smoothers.cpython-37.pyc
│   │   │   │   ├── test_kernel_extras.py
│   │   │   │   └── test_smoothers.py
│   │   │   ├── panel
│   │   │   │   ├── correlation_structures.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mixed.py
│   │   │   │   ├── panelmod.py
│   │   │   │   ├── panel_short.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── correlation_structures.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── mixed.cpython-37.pyc
│   │   │   │   │   ├── panelmod.cpython-37.pyc
│   │   │   │   │   ├── panel_short.cpython-37.pyc
│   │   │   │   │   ├── random_panel.cpython-37.pyc
│   │   │   │   │   └── sandwich_covariance_generic.cpython-37.pyc
│   │   │   │   ├── random_panel.py
│   │   │   │   ├── sandwich_covariance_generic.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_random_panel.cpython-37.pyc
│   │   │   │   └── test_random_panel.py
│   │   │   ├── pca.py
│   │   │   ├── predict_functional.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bspline.cpython-37.pyc
│   │   │   │   ├── descstats.cpython-37.pyc
│   │   │   │   ├── gam.cpython-37.pyc
│   │   │   │   ├── infotheo.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mle.cpython-37.pyc
│   │   │   │   ├── multilinear.cpython-37.pyc
│   │   │   │   ├── pca.cpython-37.pyc
│   │   │   │   ├── predict_functional.cpython-37.pyc
│   │   │   │   ├── rls.cpython-37.pyc
│   │   │   │   └── sysreg.cpython-37.pyc
│   │   │   ├── regression
│   │   │   │   ├── anova_nistcertified.py
│   │   │   │   ├── ar_panel.py
│   │   │   │   ├── example_kernridge.py
│   │   │   │   ├── gmm.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── kernridgeregress_class.py
│   │   │   │   ├── ols_anova_original.py
│   │   │   │   ├── onewaygls.py
│   │   │   │   ├── penalized.py
│   │   │   │   ├── predstd.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── anova_nistcertified.cpython-37.pyc
│   │   │   │   │   ├── ar_panel.cpython-37.pyc
│   │   │   │   │   ├── example_kernridge.cpython-37.pyc
│   │   │   │   │   ├── gmm.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── kernridgeregress_class.cpython-37.pyc
│   │   │   │   │   ├── ols_anova_original.cpython-37.pyc
│   │   │   │   │   ├── onewaygls.cpython-37.pyc
│   │   │   │   │   ├── penalized.cpython-37.pyc
│   │   │   │   │   ├── predstd.cpython-37.pyc
│   │   │   │   │   ├── runmnl.cpython-37.pyc
│   │   │   │   │   ├── sympy_diff.cpython-37.pyc
│   │   │   │   │   ├── tools.cpython-37.pyc
│   │   │   │   │   ├── treewalkerclass.cpython-37.pyc
│   │   │   │   │   ├── try_catdata.cpython-37.pyc
│   │   │   │   │   ├── try_ols_anova.cpython-37.pyc
│   │   │   │   │   └── try_treewalker.cpython-37.pyc
│   │   │   │   ├── runmnl.py
│   │   │   │   ├── sympy_diff.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── griliches76.dta
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── results_gmm_griliches.cpython-37.pyc
│   │   │   │   │   │   ├── results_gmm_griliches_iter.cpython-37.pyc
│   │   │   │   │   │   ├── results_gmm_poisson.cpython-37.pyc
│   │   │   │   │   │   ├── results_ivreg2_griliches.cpython-37.pyc
│   │   │   │   │   │   ├── test_gmm.cpython-37.pyc
│   │   │   │   │   │   └── test_gmm_poisson.cpython-37.pyc
│   │   │   │   │   ├── racd10data_with_transformed.csv
│   │   │   │   │   ├── results_gmm_griliches_iter.py
│   │   │   │   │   ├── results_gmm_griliches.py
│   │   │   │   │   ├── results_gmm_poisson.py
│   │   │   │   │   ├── results_ivreg2_griliches.py
│   │   │   │   │   ├── test_gmm_poisson.py
│   │   │   │   │   └── test_gmm.py
│   │   │   │   ├── tools.py
│   │   │   │   ├── treewalkerclass.py
│   │   │   │   ├── try_catdata.py
│   │   │   │   ├── try_ols_anova.py
│   │   │   │   └── try_treewalker.py
│   │   │   ├── rls.py
│   │   │   ├── stats
│   │   │   │   ├── contrast_tools.py
│   │   │   │   ├── diagnostic.py
│   │   │   │   ├── ex_newtests.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── multicomp.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── contrast_tools.cpython-37.pyc
│   │   │   │   │   ├── diagnostic.cpython-37.pyc
│   │   │   │   │   ├── ex_newtests.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── multicomp.cpython-37.pyc
│   │   │   │   │   ├── runs.cpython-37.pyc
│   │   │   │   │   ├── stats_dhuard.cpython-37.pyc
│   │   │   │   │   └── stats_mstats_short.cpython-37.pyc
│   │   │   │   ├── runs.py
│   │   │   │   ├── stats_dhuard.py
│   │   │   │   ├── stats_mstats_short.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_multicomp.cpython-37.pyc
│   │   │   │   └── test_multicomp.py
│   │   │   ├── sysreg.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── maketests_mlabwrap.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── maketests_mlabwrap.cpython-37.pyc
│   │   │   │   │   ├── savervs.cpython-37.pyc
│   │   │   │   │   ├── test_gam.cpython-37.pyc
│   │   │   │   │   ├── test_pca.cpython-37.pyc
│   │   │   │   │   └── test_predict_functional.cpython-37.pyc
│   │   │   │   ├── savervs.py
│   │   │   │   ├── test_gam.py
│   │   │   │   ├── test_pca.py
│   │   │   │   └── test_predict_functional.py
│   │   │   ├── tools
│   │   │   │   ├── cross_val.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mctools.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── cross_val.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── mctools.cpython-37.pyc
│   │   │   │   │   ├── tools_pca.cpython-37.pyc
│   │   │   │   │   └── try_mctools.cpython-37.pyc
│   │   │   │   ├── tools_pca.py
│   │   │   │   └── try_mctools.py
│   │   │   └── tsa
│   │   │   ├── diffusion2.py
│   │   │   ├── diffusion.py
│   │   │   ├── example_arma.py
│   │   │   ├── fftarma.py
│   │   │   ├── __init__.py
│   │   │   ├── movstat.py
│   │   │   ├── __pycache__
│   │   │   │   ├── diffusion2.cpython-37.pyc
│   │   │   │   ├── diffusion.cpython-37.pyc
│   │   │   │   ├── example_arma.cpython-37.pyc
│   │   │   │   ├── fftarma.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── movstat.cpython-37.pyc
│   │   │   │   ├── try_arma_more.cpython-37.pyc
│   │   │   │   ├── try_fi.cpython-37.pyc
│   │   │   │   ├── try_var_convolve.cpython-37.pyc
│   │   │   │   └── varma.cpython-37.pyc
│   │   │   ├── try_arma_more.py
│   │   │   ├── try_fi.py
│   │   │   ├── try_var_convolve.py
│   │   │   └── varma.py
│   │   ├── setup.cfg
│   │   ├── src
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── stats
│   │   │   ├── _adnorm.py
│   │   │   ├── anova.py
│   │   │   ├── api.py
│   │   │   ├── base.py
│   │   │   ├── contingency_tables.py
│   │   │   ├── contrast.py
│   │   │   ├── correlation_tools.py
│   │   │   ├── descriptivestats.py
│   │   │   ├── _diagnostic_other.py
│   │   │   ├── diagnostic.py
│   │   │   ├── dist_dependence_measures.py
│   │   │   ├── gof.py
│   │   │   ├── __init__.py
│   │   │   ├── inter_rater.py
│   │   │   ├── _knockoff.py
│   │   │   ├── knockoff_regeffects.py
│   │   │   ├── libqsturng
│   │   │   │   ├── CH.r
│   │   │   │   ├── __init__.py
│   │   │   │   ├── LICENSE.txt
│   │   │   │   ├── make_tbls.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── make_tbls.cpython-37.pyc
│   │   │   │   │   └── qsturng_.cpython-37.pyc
│   │   │   │   ├── qsturng_.py
│   │   │   │   └── tests
│   │   │   │   ├── bootleg.dat
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_qsturng.cpython-37.pyc
│   │   │   │   └── test_qsturng.py
│   │   │   ├── _lilliefors_critical_values.py
│   │   │   ├── _lilliefors.py
│   │   │   ├── mediation.py
│   │   │   ├── meta_analysis.py
│   │   │   ├── moment_helpers.py
│   │   │   ├── multicomp.py
│   │   │   ├── multitest.py
│   │   │   ├── multivariate.py
│   │   │   ├── multivariate_tools.py
│   │   │   ├── oaxaca.py
│   │   │   ├── oneway.py
│   │   │   ├── outliers_influence.py
│   │   │   ├── power.py
│   │   │   ├── proportion.py
│   │   │   ├── __pycache__
│   │   │   │   ├── _adnorm.cpython-37.pyc
│   │   │   │   ├── anova.cpython-37.pyc
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── contingency_tables.cpython-37.pyc
│   │   │   │   ├── contrast.cpython-37.pyc
│   │   │   │   ├── correlation_tools.cpython-37.pyc
│   │   │   │   ├── descriptivestats.cpython-37.pyc
│   │   │   │   ├── diagnostic.cpython-37.pyc
│   │   │   │   ├── _diagnostic_other.cpython-37.pyc
│   │   │   │   ├── dist_dependence_measures.cpython-37.pyc
│   │   │   │   ├── gof.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── inter_rater.cpython-37.pyc
│   │   │   │   ├── _knockoff.cpython-37.pyc
│   │   │   │   ├── knockoff_regeffects.cpython-37.pyc
│   │   │   │   ├── _lilliefors.cpython-37.pyc
│   │   │   │   ├── _lilliefors_critical_values.cpython-37.pyc
│   │   │   │   ├── mediation.cpython-37.pyc
│   │   │   │   ├── meta_analysis.cpython-37.pyc
│   │   │   │   ├── moment_helpers.cpython-37.pyc
│   │   │   │   ├── multicomp.cpython-37.pyc
│   │   │   │   ├── multitest.cpython-37.pyc
│   │   │   │   ├── multivariate.cpython-37.pyc
│   │   │   │   ├── multivariate_tools.cpython-37.pyc
│   │   │   │   ├── oaxaca.cpython-37.pyc
│   │   │   │   ├── oneway.cpython-37.pyc
│   │   │   │   ├── outliers_influence.cpython-37.pyc
│   │   │   │   ├── power.cpython-37.pyc
│   │   │   │   ├── proportion.cpython-37.pyc
│   │   │   │   ├── rates.cpython-37.pyc
│   │   │   │   ├── regularized_covariance.cpython-37.pyc
│   │   │   │   ├── robust_compare.cpython-37.pyc
│   │   │   │   ├── sandwich_covariance.cpython-37.pyc
│   │   │   │   ├── stattools.cpython-37.pyc
│   │   │   │   ├── tabledist.cpython-37.pyc
│   │   │   │   └── weightstats.cpython-37.pyc
│   │   │   ├── rates.py
│   │   │   ├── regularized_covariance.py
│   │   │   ├── robust_compare.py
│   │   │   ├── sandwich_covariance.py
│   │   │   ├── stattools.py
│   │   │   ├── tabledist.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_anova.cpython-37.pyc
│   │   │   │   │   ├── test_anova_rm.cpython-37.pyc
│   │   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   │   ├── test_contingency_tables.cpython-37.pyc
│   │   │   │   │   ├── test_contrast.cpython-37.pyc
│   │   │   │   │   ├── test_correlation.cpython-37.pyc
│   │   │   │   │   ├── test_corrpsd.cpython-37.pyc
│   │   │   │   │   ├── test_descriptivestats.cpython-37.pyc
│   │   │   │   │   ├── test_diagnostic.cpython-37.pyc
│   │   │   │   │   ├── test_diagnostic_other.cpython-37.pyc
│   │   │   │   │   ├── test_dist_dependant_measures.cpython-37.pyc
│   │   │   │   │   ├── test_gof.cpython-37.pyc
│   │   │   │   │   ├── test_groups_sw.cpython-37.pyc
│   │   │   │   │   ├── test_influence.cpython-37.pyc
│   │   │   │   │   ├── test_inter_rater.cpython-37.pyc
│   │   │   │   │   ├── test_knockoff.cpython-37.pyc
│   │   │   │   │   ├── test_lilliefors.cpython-37.pyc
│   │   │   │   │   ├── test_mediation.cpython-37.pyc
│   │   │   │   │   ├── test_meta.cpython-37.pyc
│   │   │   │   │   ├── test_moment_helpers.cpython-37.pyc
│   │   │   │   │   ├── test_multi.cpython-37.pyc
│   │   │   │   │   ├── test_multivariate.cpython-37.pyc
│   │   │   │   │   ├── test_nonparametric.cpython-37.pyc
│   │   │   │   │   ├── test_oaxaca.cpython-37.pyc
│   │   │   │   │   ├── test_oneway.cpython-37.pyc
│   │   │   │   │   ├── test_outliers_influence.cpython-37.pyc
│   │   │   │   │   ├── test_pairwise.cpython-37.pyc
│   │   │   │   │   ├── test_panel_robustcov.cpython-37.pyc
│   │   │   │   │   ├── test_power.cpython-37.pyc
│   │   │   │   │   ├── test_proportion.cpython-37.pyc
│   │   │   │   │   ├── test_qsturng.cpython-37.pyc
│   │   │   │   │   ├── test_rates_poisson.cpython-37.pyc
│   │   │   │   │   ├── test_regularized_covariance.cpython-37.pyc
│   │   │   │   │   ├── test_robust_compare.cpython-37.pyc
│   │   │   │   │   ├── test_sandwich.cpython-37.pyc
│   │   │   │   │   ├── test_statstools.cpython-37.pyc
│   │   │   │   │   ├── test_tabledist.cpython-37.pyc
│   │   │   │   │   ├── test_tost.cpython-37.pyc
│   │   │   │   │   └── test_weightstats.cpython-37.pyc
│   │   │   │   ├── results
│   │   │   │   │   ├── binary_constrict.csv
│   │   │   │   │   ├── bootleg.csv
│   │   │   │   │   ├── contingency_table_r_results.csv
│   │   │   │   │   ├── data.dat
│   │   │   │   │   ├── framing.csv
│   │   │   │   │   ├── influence_lsdiag_R.json
│   │   │   │   │   ├── influence_measures_bool_R.csv
│   │   │   │   │   ├── influence_measures_R.csv
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── lilliefors_critical_value_simulation.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── lilliefors_critical_value_simulation.cpython-37.pyc
│   │   │   │   │   │   ├── results_meta.cpython-37.pyc
│   │   │   │   │   │   ├── results_multinomial_proportions.cpython-37.pyc
│   │   │   │   │   │   ├── results_panelrobust.cpython-37.pyc
│   │   │   │   │   │   ├── results_power.cpython-37.pyc
│   │   │   │   │   │   ├── results_proportion.cpython-37.pyc
│   │   │   │   │   │   └── results_rates.cpython-37.pyc
│   │   │   │   │   ├── results_influence_logit.csv
│   │   │   │   │   ├── results_meta.py
│   │   │   │   │   ├── results_multinomial_proportions.py
│   │   │   │   │   ├── results_panelrobust.py
│   │   │   │   │   ├── results_power.py
│   │   │   │   │   ├── results_proportion.py
│   │   │   │   │   ├── results_rates.py
│   │   │   │   │   ├── wspec1.csv
│   │   │   │   │   ├── wspec2.csv
│   │   │   │   │   ├── wspec3.csv
│   │   │   │   │   └── wspec4.csv
│   │   │   │   ├── test_anova.py
│   │   │   │   ├── test_anova_rm.py
│   │   │   │   ├── test_base.py
│   │   │   │   ├── test_contingency_tables.py
│   │   │   │   ├── test_contrast.py
│   │   │   │   ├── test_correlation.py
│   │   │   │   ├── test_corrpsd.py
│   │   │   │   ├── test_data.txt
│   │   │   │   ├── test_descriptivestats.py
│   │   │   │   ├── test_diagnostic_other.py
│   │   │   │   ├── test_diagnostic.py
│   │   │   │   ├── test_dist_dependant_measures.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_meta.py
│   │   │   │   ├── test_moment_helpers.py
│   │   │   │   ├── test_multi.py
│   │   │   │   ├── test_multivariate.py
│   │   │   │   ├── test_nonparametric.py
│   │   │   │   ├── test_oaxaca.py
│   │   │   │   ├── test_oneway.py
│   │   │   │   ├── test_outliers_influence.py
│   │   │   │   ├── test_pairwise.py
│   │   │   │   ├── test_panel_robustcov.py
│   │   │   │   ├── test_power.py
│   │   │   │   ├── test_proportion.py
│   │   │   │   ├── test_qsturng.py
│   │   │   │   ├── test_rates_poisson.py
│   │   │   │   ├── test_regularized_covariance.py
│   │   │   │   ├── test_robust_compare.py
│   │   │   │   ├── test_sandwich.py
│   │   │   │   ├── test_statstools.py
│   │   │   │   ├── test_tabledist.py
│   │   │   │   ├── test_tost.py
│   │   │   │   └── test_weightstats.py
│   │   │   └── weightstats.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── test_package.cpython-37.pyc
│   │   │   └── test_package.py
│   │   ├── tools
│   │   │   ├── catadd.py
│   │   │   ├── data.py
│   │   │   ├── decorators.py
│   │   │   ├── docstring.py
│   │   │   ├── eval_measures.py
│   │   │   ├── grouputils.py
│   │   │   ├── __init__.py
│   │   │   ├── linalg.py
│   │   │   ├── numdiff.py
│   │   │   ├── parallel.py
│   │   │   ├── print_version.py
│   │   │   ├── __pycache__
│   │   │   │   ├── catadd.cpython-37.pyc
│   │   │   │   ├── data.cpython-37.pyc
│   │   │   │   ├── decorators.cpython-37.pyc
│   │   │   │   ├── docstring.cpython-37.pyc
│   │   │   │   ├── eval_measures.cpython-37.pyc
│   │   │   │   ├── grouputils.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── linalg.cpython-37.pyc
│   │   │   │   ├── numdiff.cpython-37.pyc
│   │   │   │   ├── parallel.cpython-37.pyc
│   │   │   │   ├── print_version.cpython-37.pyc
│   │   │   │   ├── rootfinding.cpython-37.pyc
│   │   │   │   ├── sequences.cpython-37.pyc
│   │   │   │   ├── sm_exceptions.cpython-37.pyc
│   │   │   │   ├── _testing.cpython-37.pyc
│   │   │   │   ├── testing.cpython-37.pyc
│   │   │   │   ├── tools.cpython-37.pyc
│   │   │   │   ├── transform_model.cpython-37.pyc
│   │   │   │   └── web.cpython-37.pyc
│   │   │   ├── rootfinding.py
│   │   │   ├── sequences.py
│   │   │   ├── sm_exceptions.py
│   │   │   ├── _testing.py
│   │   │   ├── testing.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_catadd.cpython-37.pyc
│   │   │   │   │   ├── test_data.cpython-37.pyc
│   │   │   │   │   ├── test_decorators.cpython-37.pyc
│   │   │   │   │   ├── test_docstring.cpython-37.pyc
│   │   │   │   │   ├── test_eval_measures.cpython-37.pyc
│   │   │   │   │   ├── test_grouputils.cpython-37.pyc
│   │   │   │   │   ├── test_linalg.cpython-37.pyc
│   │   │   │   │   ├── test_numdiff.cpython-37.pyc
│   │   │   │   │   ├── test_parallel.cpython-37.pyc
│   │   │   │   │   ├── test_rootfinding.cpython-37.pyc
│   │   │   │   │   ├── test_sequences.cpython-37.pyc
│   │   │   │   │   ├── test_testing.cpython-37.pyc
│   │   │   │   │   ├── test_tools.cpython-37.pyc
│   │   │   │   │   ├── test_transform_model.cpython-37.pyc
│   │   │   │   │   └── test_web.cpython-37.pyc
│   │   │   │   ├── 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
│   │   │   │   ├── decorators.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── decorators.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── validation.cpython-37.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_validation.cpython-37.pyc
│   │   │   │   │   └── test_validation.py
│   │   │   │   └── validation.py
│   │   │   └── web.py
│   │   ├── tsa
│   │   │   ├── adfvalues.py
│   │   │   ├── api.py
│   │   │   ├── arima
│   │   │   │   ├── api.py
│   │   │   │   ├── datasets
│   │   │   │   │   ├── brockwell_davis_2002
│   │   │   │   │   │   ├── data
│   │   │   │   │   │   │   ├── dowj.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── lake.py
│   │   │   │   │   │   │   ├── oshorts.py
│   │   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   │   ├── dowj.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── lake.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── oshorts.cpython-37.pyc
│   │   │   │   │   │   │   │   └── sbl.cpython-37.pyc
│   │   │   │   │   │   │   └── sbl.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── estimators
│   │   │   │   │   ├── burg.py
│   │   │   │   │   ├── durbin_levinson.py
│   │   │   │   │   ├── gls.py
│   │   │   │   │   ├── hannan_rissanen.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── innovations.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── burg.cpython-37.pyc
│   │   │   │   │   │   ├── durbin_levinson.cpython-37.pyc
│   │   │   │   │   │   ├── gls.cpython-37.pyc
│   │   │   │   │   │   ├── hannan_rissanen.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── innovations.cpython-37.pyc
│   │   │   │   │   │   ├── statespace.cpython-37.pyc
│   │   │   │   │   │   └── yule_walker.cpython-37.pyc
│   │   │   │   │   ├── statespace.py
│   │   │   │   │   ├── tests
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_burg.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_durbin_levinson.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_gls.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_hannan_rissanen.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_innovations.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_statespace.cpython-37.pyc
│   │   │   │   │   │   │   └── test_yule_walker.cpython-37.pyc
│   │   │   │   │   │   ├── 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
│   │   │   │   ├── __init__.py
│   │   │   │   ├── model.py
│   │   │   │   ├── params.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── model.cpython-37.pyc
│   │   │   │   │   ├── params.cpython-37.pyc
│   │   │   │   │   ├── specification.cpython-37.pyc
│   │   │   │   │   └── tools.cpython-37.pyc
│   │   │   │   ├── specification.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_model.cpython-37.pyc
│   │   │   │   │   │   ├── test_params.cpython-37.pyc
│   │   │   │   │   │   ├── test_specification.cpython-37.pyc
│   │   │   │   │   │   └── test_tools.cpython-37.pyc
│   │   │   │   │   ├── test_model.py
│   │   │   │   │   ├── test_params.py
│   │   │   │   │   ├── test_specification.py
│   │   │   │   │   └── test_tools.py
│   │   │   │   └── tools.py
│   │   │   ├── arima_model.py
│   │   │   ├── arima_process.py
│   │   │   ├── arma_mle.py
│   │   │   ├── ar_model.py
│   │   │   ├── base
│   │   │   │   ├── datetools.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── prediction.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── datetools.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── prediction.cpython-37.pyc
│   │   │   │   │   └── tsa_model.cpython-37.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   │   │   ├── test_datetools.cpython-37.pyc
│   │   │   │   │   │   ├── test_prediction.cpython-37.pyc
│   │   │   │   │   │   └── test_tsa_indexes.cpython-37.pyc
│   │   │   │   │   ├── test_base.py
│   │   │   │   │   ├── test_datetools.py
│   │   │   │   │   ├── test_prediction.py
│   │   │   │   │   └── test_tsa_indexes.py
│   │   │   │   └── tsa_model.py
│   │   │   ├── _bds.py
│   │   │   ├── coint_tables.py
│   │   │   ├── descriptivestats.py
│   │   │   ├── deterministic.py
│   │   │   ├── exponential_smoothing
│   │   │   │   ├── base.py
│   │   │   │   ├── ets.py
│   │   │   │   ├── _ets_smooth.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── initialization.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── ets.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── initialization.cpython-37.pyc
│   │   │   ├── filters
│   │   │   │   ├── api.py
│   │   │   │   ├── bk_filter.py
│   │   │   │   ├── cf_filter.py
│   │   │   │   ├── filtertools.py
│   │   │   │   ├── hp_filter.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   │   ├── bk_filter.cpython-37.pyc
│   │   │   │   │   ├── cf_filter.cpython-37.pyc
│   │   │   │   │   ├── filtertools.cpython-37.pyc
│   │   │   │   │   ├── hp_filter.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── _utils.cpython-37.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_filters.cpython-37.pyc
│   │   │   │   │   ├── results
│   │   │   │   │   │   ├── filter_results.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── filter_results.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── test_filters.py
│   │   │   │   └── _utils.py
│   │   │   ├── forecasting
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── stl.cpython-37.pyc
│   │   │   │   │   └── theta.cpython-37.pyc
│   │   │   │   ├── stl.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_stl.cpython-37.pyc
│   │   │   │   │   │   └── test_theta.cpython-37.pyc
│   │   │   │   │   ├── test_stl.py
│   │   │   │   │   └── test_theta.py
│   │   │   │   └── theta.py
│   │   │   ├── holtwinters
│   │   │   │   ├── _exponential_smoothers.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── __init__.py
│   │   │   │   ├── model.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── model.cpython-37.pyc
│   │   │   │   │   ├── results.cpython-37.pyc
│   │   │   │   │   └── _smoothers.cpython-37.pyc
│   │   │   │   ├── results.py
│   │   │   │   ├── _smoothers.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_holtwinters.cpython-37.pyc
│   │   │   │   ├── results
│   │   │   │   │   ├── housing-data.csv
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── test_holtwinters.py
│   │   │   ├── __init__.py
│   │   │   ├── innovations
│   │   │   │   ├── api.py
│   │   │   │   ├── _arma_innovations.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── arma_innovations.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   │   ├── arma_innovations.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_arma_innovations.cpython-37.pyc
│   │   │   │   │   └── test_cython_arma_innovations_fast.cpython-37.pyc
│   │   │   │   ├── test_arma_innovations.py
│   │   │   │   └── test_cython_arma_innovations_fast.py
│   │   │   ├── _innovations.cpython-37m-x86_64-linux-gnu.so
│   │   │   ├── interp
│   │   │   │   ├── denton.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── denton.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_denton.cpython-37.pyc
│   │   │   │   └── test_denton.py
│   │   │   ├── kalmanf
│   │   │   │   ├── __init__.py
│   │   │   │   ├── kalmanfilter.py
│   │   │   │   ├── kalman_loglike.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── kalmanfilter.cpython-37.pyc
│   │   │   ├── mlemodel.py
│   │   │   ├── __pycache__
│   │   │   │   ├── adfvalues.cpython-37.pyc
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── arima_model.cpython-37.pyc
│   │   │   │   ├── arima_process.cpython-37.pyc
│   │   │   │   ├── arma_mle.cpython-37.pyc
│   │   │   │   ├── ar_model.cpython-37.pyc
│   │   │   │   ├── _bds.cpython-37.pyc
│   │   │   │   ├── coint_tables.cpython-37.pyc
│   │   │   │   ├── descriptivestats.cpython-37.pyc
│   │   │   │   ├── deterministic.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mlemodel.cpython-37.pyc
│   │   │   │   ├── seasonal.cpython-37.pyc
│   │   │   │   ├── stattools.cpython-37.pyc
│   │   │   │   ├── tsatools.cpython-37.pyc
│   │   │   │   ├── varma_process.cpython-37.pyc
│   │   │   │   └── x13.cpython-37.pyc
│   │   │   ├── regime_switching
│   │   │   │   ├── _hamilton_filter.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── __init__.py
│   │   │   │   ├── _kim_smoother.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── markov_autoregression.py
│   │   │   │   ├── markov_regression.py
│   │   │   │   ├── markov_switching.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── markov_autoregression.cpython-37.pyc
│   │   │   │   │   ├── markov_regression.cpython-37.pyc
│   │   │   │   │   └── markov_switching.cpython-37.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_markov_autoregression.cpython-37.pyc
│   │   │   │   │   ├── test_markov_regression.cpython-37.pyc
│   │   │   │   │   └── test_markov_switching.cpython-37.pyc
│   │   │   │   ├── results
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── mar_filardo.csv
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── results_predict_fedfunds.csv
│   │   │   │   │   └── results_predict_rgnp.csv
│   │   │   │   ├── test_markov_autoregression.py
│   │   │   │   ├── test_markov_regression.py
│   │   │   │   └── test_markov_switching.py
│   │   │   ├── seasonal.py
│   │   │   ├── statespace
│   │   │   │   ├── api.py
│   │   │   │   ├── _cfa_simulation_smoother.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cfa_simulation_smoother.py
│   │   │   │   ├── dynamic_factor_mq.py
│   │   │   │   ├── dynamic_factor.py
│   │   │   │   ├── exponential_smoothing.py
│   │   │   │   ├── _filters
│   │   │   │   │   ├── _conventional.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── _inversions.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── _univariate.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   └── _univariate_diffuse.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── _initialization.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── initialization.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── _kalman_filter.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── kalman_filter.py
│   │   │   │   ├── _kalman_smoother.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── kalman_smoother.py
│   │   │   │   ├── mlemodel.py
│   │   │   │   ├── news.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   │   ├── cfa_simulation_smoother.cpython-37.pyc
│   │   │   │   │   ├── dynamic_factor.cpython-37.pyc
│   │   │   │   │   ├── dynamic_factor_mq.cpython-37.pyc
│   │   │   │   │   ├── exponential_smoothing.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── initialization.cpython-37.pyc
│   │   │   │   │   ├── kalman_filter.cpython-37.pyc
│   │   │   │   │   ├── kalman_smoother.cpython-37.pyc
│   │   │   │   │   ├── mlemodel.cpython-37.pyc
│   │   │   │   │   ├── news.cpython-37.pyc
│   │   │   │   │   ├── _pykalman_smoother.cpython-37.pyc
│   │   │   │   │   ├── _quarterly_ar1.cpython-37.pyc
│   │   │   │   │   ├── representation.cpython-37.pyc
│   │   │   │   │   ├── sarimax.cpython-37.pyc
│   │   │   │   │   ├── simulation_smoother.cpython-37.pyc
│   │   │   │   │   ├── structural.cpython-37.pyc
│   │   │   │   │   ├── tools.cpython-37.pyc
│   │   │   │   │   └── varmax.cpython-37.pyc
│   │   │   │   ├── _pykalman_smoother.py
│   │   │   │   ├── _quarterly_ar1.py
│   │   │   │   ├── _representation.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── representation.py
│   │   │   │   ├── sarimax.py
│   │   │   │   ├── _simulation_smoother.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── simulation_smoother.py
│   │   │   │   ├── _smoothers
│   │   │   │   │   ├── _alternative.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   ├── _classical.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   ├── _conventional.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── _univariate.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   │   └── _univariate_diffuse.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── structural.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── kfas_helpers.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── kfas_helpers.cpython-37.pyc
│   │   │   │   │   │   ├── test_cfa_simulation_smoothing.cpython-37.pyc
│   │   │   │   │   │   ├── test_cfa_tvpvar.cpython-37.pyc
│   │   │   │   │   │   ├── test_chandrasekhar.cpython-37.pyc
│   │   │   │   │   │   ├── test_collapsed.cpython-37.pyc
│   │   │   │   │   │   ├── test_concentrated.cpython-37.pyc
│   │   │   │   │   │   ├── test_conserve_memory.cpython-37.pyc
│   │   │   │   │   │   ├── test_dynamic_factor.cpython-37.pyc
│   │   │   │   │   │   ├── test_dynamic_factor_mq.cpython-37.pyc
│   │   │   │   │   │   ├── test_dynamic_factor_mq_frbny_nowcast.cpython-37.pyc
│   │   │   │   │   │   ├── test_dynamic_factor_mq_monte_carlo.cpython-37.pyc
│   │   │   │   │   │   ├── test_exact_diffuse_filtering.cpython-37.pyc
│   │   │   │   │   │   ├── test_exponential_smoothing.cpython-37.pyc
│   │   │   │   │   │   ├── test_fixed_params.cpython-37.pyc
│   │   │   │   │   │   ├── test_forecasting.cpython-37.pyc
│   │   │   │   │   │   ├── test_impulse_responses.cpython-37.pyc
│   │   │   │   │   │   ├── test_initialization.cpython-37.pyc
│   │   │   │   │   │   ├── test_kalman.cpython-37.pyc
│   │   │   │   │   │   ├── test_mlemodel.cpython-37.pyc
│   │   │   │   │   │   ├── test_models.cpython-37.pyc
│   │   │   │   │   │   ├── test_multivariate_switch_univariate.cpython-37.pyc
│   │   │   │   │   │   ├── test_news.cpython-37.pyc
│   │   │   │   │   │   ├── test_options.cpython-37.pyc
│   │   │   │   │   │   ├── test_pickle.cpython-37.pyc
│   │   │   │   │   │   ├── test_prediction.cpython-37.pyc
│   │   │   │   │   │   ├── test_representation.cpython-37.pyc
│   │   │   │   │   │   ├── test_sarimax.cpython-37.pyc
│   │   │   │   │   │   ├── test_save.cpython-37.pyc
│   │   │   │   │   │   ├── test_simulate.cpython-37.pyc
│   │   │   │   │   │   ├── test_simulation_smoothing.cpython-37.pyc
│   │   │   │   │   │   ├── test_smoothing.cpython-37.pyc
│   │   │   │   │   │   ├── test_structural.cpython-37.pyc
│   │   │   │   │   │   ├── test_tools.cpython-37.pyc
│   │   │   │   │   │   ├── test_univariate.cpython-37.pyc
│   │   │   │   │   │   ├── test_var.cpython-37.pyc
│   │   │   │   │   │   └── test_varmax.cpython-37.pyc
│   │   │   │   │   ├── results
│   │   │   │   │   │   ├── cfa_tvpvar_beta.csv
│   │   │   │   │   │   ├── cfa_tvpvar_invP.csv
│   │   │   │   │   │   ├── cfa_tvpvar_Omega_11.csv
│   │   │   │   │   │   ├── cfa_tvpvar_Omega_22.csv
│   │   │   │   │   │   ├── cfa_tvpvar_posterior_mean.csv
│   │   │   │   │   │   ├── cfa_tvpvar_S10.csv
│   │   │   │   │   │   ├── cfa_tvpvar_Si0.csv
│   │   │   │   │   │   ├── cfa_tvpvar_state_variates.csv
│   │   │   │   │   │   ├── cfa_tvpvar_v10.csv
│   │   │   │   │   │   ├── cfa_tvpvar_vi0.csv
│   │   │   │   │   │   ├── clark1989.csv
│   │   │   │   │   │   ├── exponential_smoothing_params.csv
│   │   │   │   │   │   ├── exponential_smoothing_predict.csv
│   │   │   │   │   │   ├── exponential_smoothing_states.csv
│   │   │   │   │   │   ├── frbny_nowcast
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── Nowcasting
│   │   │   │   │   │   │   │   ├── data
│   │   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   │   └── US
│   │   │   │   │   │   │   │   │   ├── 2016-06-29.csv
│   │   │   │   │   │   │   │   │   ├── 2016-07-29.csv
│   │   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── functions
│   │   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_dfm_111.mat
│   │   │   │   │   │   │   ├── test_dfm_112.mat
│   │   │   │   │   │   │   ├── test_dfm_11F.mat
│   │   │   │   │   │   │   ├── test_dfm_221.mat
│   │   │   │   │   │   │   ├── test_dfm_222.mat
│   │   │   │   │   │   │   ├── test_dfm_22F.mat
│   │   │   │   │   │   │   ├── test_dfm_blocks_111.mat
│   │   │   │   │   │   │   ├── test_dfm_blocks_112.mat
│   │   │   │   │   │   │   ├── test_dfm_blocks_221.mat
│   │   │   │   │   │   │   ├── test_dfm_blocks_222.mat
│   │   │   │   │   │   │   ├── test_news_112.mat
│   │   │   │   │   │   │   ├── test_news_222.mat
│   │   │   │   │   │   │   ├── test_news_blocks_112.mat
│   │   │   │   │   │   │   └── test_news_blocks_222.mat
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── manufac.dta
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_dynamic_factor.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_kalman_filter.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_sarimax.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_structural.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_varmax.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_var_misc.cpython-37.pyc
│   │   │   │   │   │   │   └── results_var_R.cpython-37.pyc
│   │   │   │   │   │   ├── 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_missing_R.csv
│   │   │   │   │   │   ├── results_exact_initial_local_linear_trend_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_exact_initial_var1_R.csv
│   │   │   │   │   │   ├── results_intercepts_R.csv
│   │   │   │   │   │   ├── results_kalman_filter.py
│   │   │   │   │   │   ├── results_realgdpar_stata.csv
│   │   │   │   │   │   ├── results_sarimax_coverage.csv
│   │   │   │   │   │   ├── results_sarimax.py
│   │   │   │   │   │   ├── 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_generalobscov_R.csv
│   │   │   │   │   │   ├── results_smoothing_R.csv
│   │   │   │   │   │   ├── results_structural.py
│   │   │   │   │   │   ├── results_varmax.py
│   │   │   │   │   │   ├── results_varmax_stata.csv
│   │   │   │   │   │   ├── results_var_misc.py
│   │   │   │   │   │   ├── results_var_R_output.csv
│   │   │   │   │   │   ├── results_var_R.py
│   │   │   │   │   │   ├── results_var_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_cfa_simulation_smoothing.py
│   │   │   │   │   ├── test_cfa_tvpvar.py
│   │   │   │   │   ├── test_chandrasekhar.py
│   │   │   │   │   ├── test_collapsed.py
│   │   │   │   │   ├── test_concentrated.py
│   │   │   │   │   ├── test_conserve_memory.py
│   │   │   │   │   ├── test_dynamic_factor_mq_frbny_nowcast.py
│   │   │   │   │   ├── test_dynamic_factor_mq_monte_carlo.py
│   │   │   │   │   ├── test_dynamic_factor_mq.py
│   │   │   │   │   ├── test_dynamic_factor.py
│   │   │   │   │   ├── test_exact_diffuse_filtering.py
│   │   │   │   │   ├── test_exponential_smoothing.py
│   │   │   │   │   ├── test_fixed_params.py
│   │   │   │   │   ├── test_forecasting.py
│   │   │   │   │   ├── test_impulse_responses.py
│   │   │   │   │   ├── test_initialization.py
│   │   │   │   │   ├── test_kalman.py
│   │   │   │   │   ├── test_mlemodel.py
│   │   │   │   │   ├── test_models.py
│   │   │   │   │   ├── test_multivariate_switch_univariate.py
│   │   │   │   │   ├── test_news.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_varmax.py
│   │   │   │   │   └── test_var.py
│   │   │   │   ├── _tools.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── tools.py
│   │   │   │   └── varmax.py
│   │   │   ├── stattools.py
│   │   │   ├── _stl.cpython-37m-x86_64-linux-gnu.so
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_adfuller_lag.cpython-37.pyc
│   │   │   │   │   ├── test_ar.cpython-37.pyc
│   │   │   │   │   ├── test_arima.cpython-37.pyc
│   │   │   │   │   ├── test_arima_process.cpython-37.pyc
│   │   │   │   │   ├── test_bds.cpython-37.pyc
│   │   │   │   │   ├── test_deterministic.cpython-37.pyc
│   │   │   │   │   ├── test_exponential_smoothing.cpython-37.pyc
│   │   │   │   │   ├── test_seasonal.cpython-37.pyc
│   │   │   │   │   ├── test_stattools.cpython-37.pyc
│   │   │   │   │   ├── test_stl.cpython-37.pyc
│   │   │   │   │   ├── test_tsa_tools.cpython-37.pyc
│   │   │   │   │   └── test_x13.cpython-37.pyc
│   │   │   │   ├── results
│   │   │   │   │   ├── arima111_css_results.py
│   │   │   │   │   ├── arima111_forecasts.csv
│   │   │   │   │   ├── arima111nc_css_results.py
│   │   │   │   │   ├── arima111nc_results.py
│   │   │   │   │   ├── arima111_results.py
│   │   │   │   │   ├── arima112_css_results.py
│   │   │   │   │   ├── arima112nc_css_results.py
│   │   │   │   │   ├── arima112nc_results.py
│   │   │   │   │   ├── arima112_results.py
│   │   │   │   │   ├── arima211_css_results.py
│   │   │   │   │   ├── arima211nc_css_results.py
│   │   │   │   │   ├── arima211nc_results.py
│   │   │   │   │   ├── arima211_results.py
│   │   │   │   │   ├── arima212_forecast.csv
│   │   │   │   │   ├── ARMLEConstantPredict.csv
│   │   │   │   │   ├── AROLSConstantPredict.csv
│   │   │   │   │   ├── AROLSNoConstantPredict.csv
│   │   │   │   │   ├── bds_data.csv
│   │   │   │   │   ├── bds_results.csv
│   │   │   │   │   ├── datamlw_tls.py
│   │   │   │   │   ├── fit_ets_results.json
│   │   │   │   │   ├── fit_ets_results_nonseasonal.json
│   │   │   │   │   ├── fit_ets_results_seasonal.json
│   │   │   │   │   ├── gnpdef.csv
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── lutkepohl2.dta
│   │   │   │   │   ├── make_arma.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── arima111_css_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima111nc_css_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima111nc_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima111_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima112_css_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima112nc_css_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima112nc_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima112_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima211_css_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima211nc_css_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima211nc_results.cpython-37.pyc
│   │   │   │   │   │   ├── arima211_results.cpython-37.pyc
│   │   │   │   │   │   ├── datamlw_tls.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── make_arma.cpython-37.pyc
│   │   │   │   │   │   ├── results_ar.cpython-37.pyc
│   │   │   │   │   │   ├── results_arima.cpython-37.pyc
│   │   │   │   │   │   ├── results_arma_acf.cpython-37.pyc
│   │   │   │   │   │   ├── results_arma.cpython-37.pyc
│   │   │   │   │   │   ├── results_process.cpython-37.pyc
│   │   │   │   │   │   └── savedrvs.cpython-37.pyc
│   │   │   │   │   ├── rand10000.csv
│   │   │   │   │   ├── resids_css_c.csv
│   │   │   │   │   ├── resids_css_nc.csv
│   │   │   │   │   ├── resids_exact_c.csv
│   │   │   │   │   ├── resids_exact_nc.csv
│   │   │   │   │   ├── results_ar_forecast_mle_dynamic.csv
│   │   │   │   │   ├── results_arima_exog_forecasts_css.csv
│   │   │   │   │   ├── results_arima_exog_forecasts_mle.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_arima_forecasts.csv
│   │   │   │   │   ├── results_arima.py
│   │   │   │   │   ├── results_arma_acf.py
│   │   │   │   │   ├── results_arma_forecasts.csv
│   │   │   │   │   ├── results_arma.py
│   │   │   │   │   ├── results_ar.py
│   │   │   │   │   ├── results_corrgram.csv
│   │   │   │   │   ├── results_process.py
│   │   │   │   │   ├── rgnp.csv
│   │   │   │   │   ├── rgnpq.csv
│   │   │   │   │   ├── savedrvs.py
│   │   │   │   │   ├── stkprc.csv
│   │   │   │   │   ├── stl_co2.csv
│   │   │   │   │   ├── stl_test_results.csv
│   │   │   │   │   ├── 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_arima_process.py
│   │   │   │   ├── test_arima.py
│   │   │   │   ├── test_ar.py
│   │   │   │   ├── test_bds.py
│   │   │   │   ├── test_deterministic.py
│   │   │   │   ├── test_exponential_smoothing.py
│   │   │   │   ├── test_seasonal.py
│   │   │   │   ├── test_stattools.py
│   │   │   │   ├── test_stl.py
│   │   │   │   ├── test_tsa_tools.py
│   │   │   │   └── test_x13.py
│   │   │   ├── tsatools.py
│   │   │   ├── varma_process.py
│   │   │   ├── vector_ar
│   │   │   │   ├── api.py
│   │   │   │   ├── hypothesis_test_results.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── irf.py
│   │   │   │   ├── output.py
│   │   │   │   ├── plotting.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   │   ├── hypothesis_test_results.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── irf.cpython-37.pyc
│   │   │   │   │   ├── output.cpython-37.pyc
│   │   │   │   │   ├── plotting.cpython-37.pyc
│   │   │   │   │   ├── svar_model.cpython-37.pyc
│   │   │   │   │   ├── util.cpython-37.pyc
│   │   │   │   │   ├── var_model.cpython-37.pyc
│   │   │   │   │   └── vecm.cpython-37.pyc
│   │   │   │   ├── svar_model.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── example_svar.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── JMulTi_results
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── macrodata_jmulti_c_diag.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_fc5.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_granger_causality_realcons_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_granger_causality_realcons_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_granger_causality_realcons.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_granger_causality_realgdp_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_granger_causality_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_granger_causality_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_ir.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_lagorder.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_diag.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_fc5.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_granger_causality_realcons_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_granger_causality_realcons_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_granger_causality_realcons.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_granger_causality_realgdp_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_granger_causality_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_granger_causality_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c_Sigmau.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_ir.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_lagorder.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs_Sigmau.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_diag.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_fc5.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_granger_causality_realcons_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_granger_causality_realcons_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_granger_causality_realcons.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_granger_causality_realgdp_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_granger_causality_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_granger_causality_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_ir.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_lagorder.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst_Sigmau.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cst.txt
│   │   │   │   │   │   ├── macrodata_jmulti_cs.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_diag.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_fc5.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_granger_causality_realcons_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_granger_causality_realcons_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_granger_causality_realcons.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_granger_causality_realgdp_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_granger_causality_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_granger_causality_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_ir.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_lagorder.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct_Sigmau.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ct.txt
│   │   │   │   │   │   ├── macrodata_jmulti_c.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_diag.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_fc5.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_granger_causality_realcons_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_granger_causality_realcons_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_granger_causality_realcons.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_granger_causality_realgdp_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_granger_causality_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_granger_causality_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_ir.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_lagorder.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_diag.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_fc5.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_granger_causality_realcons_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_granger_causality_realcons_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_granger_causality_realcons.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_granger_causality_realgdp_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_granger_causality_realgdp.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_granger_causality_realinv.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc_Sigmau.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_ir.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_lagorder.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs_Sigmau.txt
│   │   │   │   │   │   ├── macrodata_jmulti_ncs.txt
│   │   │   │   │   │   ├── macrodata_jmulti_nc.txt
│   │   │   │   │   │   ├── parse_jmulti_var_output.py
│   │   │   │   │   │   ├── parse_jmulti_vecm_output.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── parse_jmulti_var_output.cpython-37.pyc
│   │   │   │   │   │   │   └── parse_jmulti_vecm_output.cpython-37.pyc
│   │   │   │   │   │   ├── 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_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_cili_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_cili.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_ci_Sigmau.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_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_cisli_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_cisli.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_cis_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_cis.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_ci.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_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_colo_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_colo.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_co_Sigmau.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_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_coslo_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_coslo.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_cos_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_cos.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_co.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_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_nc_Sigmau.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
│   │   │   │   │   │   ├── vecm_e6_jmulti_ncs_Sigmau.txt
│   │   │   │   │   │   ├── vecm_e6_jmulti_ncs.txt
│   │   │   │   │   │   └── vecm_e6_jmulti_nc.txt
│   │   │   │   │   ├── Matlab_results
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_coint.csv
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── example_svar.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_coint.cpython-37.pyc
│   │   │   │   │   │   ├── test_svar.cpython-37.pyc
│   │   │   │   │   │   ├── test_var.cpython-37.pyc
│   │   │   │   │   │   ├── test_var_jmulti.cpython-37.pyc
│   │   │   │   │   │   └── test_vecm.cpython-37.pyc
│   │   │   │   │   ├── results
│   │   │   │   │   │   ├── e1.dat
│   │   │   │   │   │   ├── e2.dat
│   │   │   │   │   │   ├── e3.dat
│   │   │   │   │   │   ├── e4.dat
│   │   │   │   │   │   ├── e5.dat
│   │   │   │   │   │   ├── e6.dat
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_svar.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_svar_st.cpython-37.pyc
│   │   │   │   │   │   │   ├── results_var.cpython-37.pyc
│   │   │   │   │   │   │   └── results_var_data.cpython-37.pyc
│   │   │   │   │   │   ├── results_svar.py
│   │   │   │   │   │   ├── results_svar_st.py
│   │   │   │   │   │   ├── results_var_data.py
│   │   │   │   │   │   ├── results_var.py
│   │   │   │   │   │   └── vars_results.npz
│   │   │   │   │   ├── test_coint.py
│   │   │   │   │   ├── test_svar.py
│   │   │   │   │   ├── test_var_jmulti.py
│   │   │   │   │   ├── test_var.py
│   │   │   │   │   └── test_vecm.py
│   │   │   │   ├── util.py
│   │   │   │   ├── var_model.py
│   │   │   │   └── vecm.py
│   │   │   └── x13.py
│   │   └── _version.py
│   └── statsmodels-0.12.0.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE.txt
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
313 directories, 2202 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment