├── .circleci └── config.yml ├── .codespellignore ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── circle_artifacts.yml │ ├── docs-release.yml │ ├── main.yml │ ├── pr_checks.yml │ └── python-publish.yml ├── .gitignore ├── CITATION.cff ├── CONTRIBUTING.md ├── DEVELOPING.md ├── LICENSE ├── README.md ├── doc ├── .gitignore ├── Makefile ├── _static │ ├── css │ │ └── custom.css │ └── favicon.ico ├── _templates │ ├── autosummary │ │ ├── class.rst │ │ └── function.rst │ ├── docs-navbar.html │ ├── docs-toc.html │ ├── layout.html │ └── version-switcher.html ├── api.rst ├── conditional_independence.rst ├── conf.py ├── index.rst ├── installation.md ├── make.bat ├── references.bib ├── use.rst ├── user_guide.rst ├── whats_new.rst └── whats_new │ ├── _contributors.rst │ ├── changelog_legend.inc │ ├── v0.1.rst │ └── v0.2.rst ├── examples └── README.txt ├── poetry.lock ├── pyproject.toml ├── pywhy_stats ├── __init__.py ├── _version.py ├── api.py ├── conditional_ksample │ ├── __init__.py │ ├── base_propensity.py │ ├── bregman.py │ └── kcd.py ├── independence │ ├── __init__.py │ ├── fisherz.py │ ├── kci.py │ └── power_divergence.py ├── kernel_utils.py ├── kernels.py ├── pvalue_result.py └── utils.py ├── setup.py └── tests ├── __init__.py ├── conditional_ksample ├── test_base.py └── test_cd.py ├── test_api.py ├── test_fisherz_test.py ├── test_kci.py ├── test_kernels.py ├── test_power_divergence.py └── testdata ├── README.md ├── __init__.py ├── adult.csv └── testdata.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codespellignore: -------------------------------------------------------------------------------- 1 | raison 2 | wee -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/circle_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/workflows/circle_artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/docs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/workflows/docs-release.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/workflows/pr_checks.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/README.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /doc/_templates/autosummary/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_templates/autosummary/function.rst -------------------------------------------------------------------------------- /doc/_templates/docs-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_templates/docs-navbar.html -------------------------------------------------------------------------------- /doc/_templates/docs-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_templates/docs-toc.html -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/_templates/version-switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/_templates/version-switcher.html -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conditional_independence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/conditional_independence.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/references.bib -------------------------------------------------------------------------------- /doc/use.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/use.rst -------------------------------------------------------------------------------- /doc/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/user_guide.rst -------------------------------------------------------------------------------- /doc/whats_new.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/whats_new.rst -------------------------------------------------------------------------------- /doc/whats_new/_contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/whats_new/_contributors.rst -------------------------------------------------------------------------------- /doc/whats_new/changelog_legend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/whats_new/changelog_legend.inc -------------------------------------------------------------------------------- /doc/whats_new/v0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/whats_new/v0.1.rst -------------------------------------------------------------------------------- /doc/whats_new/v0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/doc/whats_new/v0.2.rst -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/examples/README.txt -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pywhy_stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/__init__.py -------------------------------------------------------------------------------- /pywhy_stats/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/_version.py -------------------------------------------------------------------------------- /pywhy_stats/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/api.py -------------------------------------------------------------------------------- /pywhy_stats/conditional_ksample/__init__.py: -------------------------------------------------------------------------------- 1 | from . import bregman, kcd 2 | -------------------------------------------------------------------------------- /pywhy_stats/conditional_ksample/base_propensity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/conditional_ksample/base_propensity.py -------------------------------------------------------------------------------- /pywhy_stats/conditional_ksample/bregman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/conditional_ksample/bregman.py -------------------------------------------------------------------------------- /pywhy_stats/conditional_ksample/kcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/conditional_ksample/kcd.py -------------------------------------------------------------------------------- /pywhy_stats/independence/__init__.py: -------------------------------------------------------------------------------- 1 | from . import fisherz, kci, power_divergence 2 | -------------------------------------------------------------------------------- /pywhy_stats/independence/fisherz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/independence/fisherz.py -------------------------------------------------------------------------------- /pywhy_stats/independence/kci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/independence/kci.py -------------------------------------------------------------------------------- /pywhy_stats/independence/power_divergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/independence/power_divergence.py -------------------------------------------------------------------------------- /pywhy_stats/kernel_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/kernel_utils.py -------------------------------------------------------------------------------- /pywhy_stats/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/kernels.py -------------------------------------------------------------------------------- /pywhy_stats/pvalue_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/pvalue_result.py -------------------------------------------------------------------------------- /pywhy_stats/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/pywhy_stats/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conditional_ksample/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/conditional_ksample/test_base.py -------------------------------------------------------------------------------- /tests/conditional_ksample/test_cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/conditional_ksample/test_cd.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_fisherz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/test_fisherz_test.py -------------------------------------------------------------------------------- /tests/test_kci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/test_kci.py -------------------------------------------------------------------------------- /tests/test_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/test_kernels.py -------------------------------------------------------------------------------- /tests/test_power_divergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/test_power_divergence.py -------------------------------------------------------------------------------- /tests/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/testdata/README.md -------------------------------------------------------------------------------- /tests/testdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/adult.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/testdata/adult.csv -------------------------------------------------------------------------------- /tests/testdata/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-why/pywhy-stats/HEAD/tests/testdata/testdata.py --------------------------------------------------------------------------------