├── .github └── workflows │ ├── ci.yml │ ├── coverage.yml │ ├── doc.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── pyproject.toml ├── src └── icpy │ ├── ICP.py │ └── __init__.py └── tests └── test_ICP.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/icpy/ICP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/src/icpy/ICP.py -------------------------------------------------------------------------------- /src/icpy/__init__.py: -------------------------------------------------------------------------------- 1 | from .ICP import invariant_causal_prediction 2 | -------------------------------------------------------------------------------- /tests/test_ICP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-glx/ICPy/HEAD/tests/test_ICP.py --------------------------------------------------------------------------------