├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── _config.yml ├── appelpy ├── __init__.py ├── diagnostics.py ├── discrete_model.py ├── eda.py ├── linear_model.py └── utils.py ├── docs ├── img │ ├── 2x2-diagnostics-ols.png │ ├── data-transformation-pipe.png │ ├── interaction-encoder.png │ └── standardized-model-estimates.png ├── index.md ├── intro │ └── key-features.md └── reference │ ├── diagnostics.md │ ├── discrete-model.md │ ├── eda.md │ ├── linear-model.md │ └── utils.md ├── mkdocs.yml ├── requirements.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py └── tests ├── test_df_input.py ├── test_diagnostic_plots.py ├── test_diagnostic_stats.py ├── test_dummy_encoder.py ├── test_eda.py ├── test_interaction_encoder.py ├── test_logit.py ├── test_ols.py └── test_wls.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/README.rst -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/_config.yml -------------------------------------------------------------------------------- /appelpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/appelpy/__init__.py -------------------------------------------------------------------------------- /appelpy/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/appelpy/diagnostics.py -------------------------------------------------------------------------------- /appelpy/discrete_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/appelpy/discrete_model.py -------------------------------------------------------------------------------- /appelpy/eda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/appelpy/eda.py -------------------------------------------------------------------------------- /appelpy/linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/appelpy/linear_model.py -------------------------------------------------------------------------------- /appelpy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/appelpy/utils.py -------------------------------------------------------------------------------- /docs/img/2x2-diagnostics-ols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/img/2x2-diagnostics-ols.png -------------------------------------------------------------------------------- /docs/img/data-transformation-pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/img/data-transformation-pipe.png -------------------------------------------------------------------------------- /docs/img/interaction-encoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/img/interaction-encoder.png -------------------------------------------------------------------------------- /docs/img/standardized-model-estimates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/img/standardized-model-estimates.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/intro/key-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/intro/key-features.md -------------------------------------------------------------------------------- /docs/reference/diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/reference/diagnostics.md -------------------------------------------------------------------------------- /docs/reference/discrete-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/reference/discrete-model.md -------------------------------------------------------------------------------- /docs/reference/eda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/reference/eda.md -------------------------------------------------------------------------------- /docs/reference/linear-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/reference/linear-model.md -------------------------------------------------------------------------------- /docs/reference/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/docs/reference/utils.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_df_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_df_input.py -------------------------------------------------------------------------------- /tests/test_diagnostic_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_diagnostic_plots.py -------------------------------------------------------------------------------- /tests/test_diagnostic_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_diagnostic_stats.py -------------------------------------------------------------------------------- /tests/test_dummy_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_dummy_encoder.py -------------------------------------------------------------------------------- /tests/test_eda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_eda.py -------------------------------------------------------------------------------- /tests/test_interaction_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_interaction_encoder.py -------------------------------------------------------------------------------- /tests/test_logit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_logit.py -------------------------------------------------------------------------------- /tests/test_ols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_ols.py -------------------------------------------------------------------------------- /tests/test_wls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfarragher/appelpy/HEAD/tests/test_wls.py --------------------------------------------------------------------------------