gitextract_19gb0anp/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── test_matrix.yml │ ├── tests.yml │ ├── valgrind.yml │ └── wheels.yml ├── .gitignore ├── .mbuild.sh ├── .readthedocs.yml ├── CHANGES.rst ├── CMakeLists.txt ├── LICENSE ├── NOTICE ├── README.rst ├── docs/ │ ├── Makefile │ ├── README.rst │ ├── autogenerate.sh │ └── source/ │ ├── code.rst │ ├── conf.py │ ├── developing.rst │ ├── index.rst │ ├── introduction.rst │ ├── phik.decorators.rst │ ├── phik.rst │ ├── phik_index.rst │ ├── publication.rst │ └── tutorials.rst ├── example.py ├── phik/ │ ├── __init__.py │ ├── betainc.py │ ├── binning.py │ ├── bivariate.py │ ├── data_quality.py │ ├── decorators/ │ │ ├── __init__.py │ │ └── pandas.py │ ├── definitions.py │ ├── entry_points.py │ ├── notebooks/ │ │ ├── phik_tutorial_advanced.ipynb │ │ ├── phik_tutorial_basic.ipynb │ │ └── phik_tutorial_spark.ipynb │ ├── outliers.py │ ├── phik.py │ ├── report.py │ ├── resources.py │ ├── significance.py │ ├── simcore/ │ │ ├── __init__.py │ │ ├── asa159.cpp │ │ ├── asa159.hpp │ │ ├── bindings.cpp │ │ └── simulation.hpp │ ├── simulation.py │ ├── statistics.py │ └── utils.py ├── pyproject.toml └── tests/ ├── integration/ │ ├── test_phik_tutorial_advanced.py │ └── test_phik_tutorial_basic.py └── test_phik.py