popmon

Monitor the stability of a Pandas or Spark dataframe ⚙︎

https://github.com/ing-bank/popmon

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.4%) to scientific vocabulary

Keywords

covariate-shift data-analysis data-distributions data-profiling data-science dataset-shifts drift-detection hacktoberfest ing-bank ipython jupyter mlops monitoring pandas population-monitoring python spark statistical-process-control statistical-tests statistics

Keywords from Contributors

pipeline-testing datacleaner climate-science dependency-distance descriptive-statistics readability readability-scores syntactic-analysis cleandata data-engineering
Last synced: 4 months ago · JSON representation ·

Repository

Monitor the stability of a Pandas or Spark dataframe ⚙︎

Basic Info
Statistics
  • Stars: 504
  • Watchers: 13
  • Forks: 36
  • Open Issues: 16
  • Releases: 39
Topics
covariate-shift data-analysis data-distributions data-profiling data-science dataset-shifts drift-detection hacktoberfest ing-bank ipython jupyter mlops monitoring pandas population-monitoring python spark statistical-process-control statistical-tests statistics
Created over 5 years ago · Last pushed 4 months ago
Metadata Files
Readme Changelog License Citation

README.rst

===========================
Population Shift Monitoring
===========================

|build| |docs| |release| |release_date| |downloads| |ruff|

|logo|

`popmon` is a package that allows one to check the stability of a dataset.
`popmon` works with both **pandas** and **spark datasets**.

`popmon` creates histograms of features binned in time-slices,
and compares the stability of the profiles_ and distributions of
those histograms using `statistical tests `_, both over time and with respect to a reference.
It works with numerical, ordinal, categorical features, and the histograms can be higher-dimensional, e.g. it can also track correlations between any two features.
`popmon` can **automatically flag** and alert on **changes observed over time**, such
as trends, shifts, peaks, outliers, anomalies, changing correlations, etc,
using monitoring business rules.

Latest update: Sep 2025.

|example|

|histograms|

Spark
=====

For Spark make sure to pick up the correct `histogrammar` jar files. Spark 4.X is based on Scala 2.13; Spark 3.X is based on Scala 2.12 or 2.13.

.. code-block:: python

  spark = SparkSession.builder.config(
      "spark.jars.packages",
      "io.github.histogrammar:histogrammar_2.13:1.0.30,io.github.histogrammar:histogrammar-sparksql_2.13:1.0.30",
  ).getOrCreate()


For Scala 2.12, in the string above simply replace "2.13" with "2.12" (twice).


Examples
========

- `Flight Delays and Cancellations Kaggle data `_
- `Synthetic data (code example below) `_

Documentation
=============

The entire `popmon` documentation including tutorials can be found at `read-the-docs `_.


Notebooks
=========

.. list-table::
   :widths: 80 20
   :header-rows: 1

   * - Tutorial
     - Colab link
   * - `Basic tutorial `_
     - |notebook_basic_colab|
   * - `Detailed example (featuring configuration, Apache Spark and more) `_
     - |notebook_advanced_colab|
   * - `Incremental datasets (online analysis) `_
     - |notebook_incremental_data_colab|
   * - `Report interpretation (step-by-step guide) `_
     - |notebook_reports_colab|

Check it out
============

The `popmon` library requires Python 3.6+ and is pip friendly. To get started, simply do:

.. code-block:: bash

  $ pip install popmon

or check out the code from our GitHub repository:

.. code-block:: bash

  $ git clone https://github.com/ing-bank/popmon.git
  $ pip install -e popmon

where in this example the code is installed in edit mode (option -e).

You can now use the package in Python with:

.. code-block:: python

  import popmon

**Congratulations, you are now ready to use the popmon library!**

Quick run
=========

As a quick example, you can do:

.. code-block:: python

  import pandas as pd
  import popmon
  from popmon import resources

  # open synthetic data
  df = pd.read_csv(resources.data("test.csv.gz"), parse_dates=["date"])
  df.head()

  # generate stability report using automatic binning of all encountered features
  # (importing popmon automatically adds this functionality to a dataframe)
  report = df.pm_stability_report(time_axis="date", features=["date:age", "date:gender"])

  # to show the output of the report in a Jupyter notebook you can simply run:
  report

  # or save the report to file
  report.to_file("monitoring_report.html")

To specify your own binning specifications and features you want to report on, you do:

.. code-block:: python

  # time-axis specifications alone; all other features are auto-binned.
  report = df.pm_stability_report(
      time_axis="date", time_width="1w", time_offset="2020-1-6"
  )

  # histogram selections. Here 'date' is the first axis of each histogram.
  features = [
      "date:isActive",
      "date:age",
      "date:eyeColor",
      "date:gender",
      "date:latitude",
      "date:longitude",
      "date:isActive:age",
  ]

  # Specify your own binning specifications for individual features or combinations thereof.
  # This bin specification uses open-ended ("sparse") histograms; unspecified features get
  # auto-binned. The time-axis binning, when specified here, needs to be in nanoseconds.
  bin_specs = {
      "longitude": {"bin_width": 5.0, "bin_offset": 0.0},
      "latitude": {"bin_width": 5.0, "bin_offset": 0.0},
      "age": {"bin_width": 10.0, "bin_offset": 0.0},
      "date": {
          "bin_width": pd.Timedelta("4w").value,
          "bin_offset": pd.Timestamp("2015-1-1").value,
      },
  }

  # generate stability report
  report = df.pm_stability_report(features=features, bin_specs=bin_specs, time_axis=True)

These examples also work with spark dataframes.
You can see the output of such example notebook code `here `_.
For all available examples, please see the `tutorials `_ at read-the-docs.

Pipelines for monitoring dataset shift
======================================
Advanced users can leverage popmon's modular data pipeline to customize their workflow.
Visualization of the pipeline can be useful when debugging, or for didactic purposes.
There is a `script `_ included with the package that you can use.
The plotting is configurable, and depending on the options you will obtain a result that can be used for understanding the data flow, the high-level components and the (re)use of datasets.

|pipeline|

*Example pipeline visualization (click to enlarge)*

Reports and integrations
========================
The data shift computations that popmon performs, are by default displayed in a self-contained HTML report.
This format is favourable in many real-world environments, where access may be restricted.
Moreover, reports can be easily shared with others.

Access to the datastore means that its possible to integrate popmon in almost any workflow.
To give an example, one could store the histogram data in a PostgreSQL database and load that from Grafana and benefit from their visualisation and alert handling features (e.g. send an email or slack message upon alert).
This may be interesting to teams that are already invested in particular choice of dashboarding tool.

Possible integrations are:

+----------------+---------------+
| |grafana_logo| | |kibana_logo| |
+----------------+---------------+
| Grafana        | Kibana        |
+----------------+---------------+

Resources on how to integrate popmon are available in the `examples directory `_.
Contributions of additional or improved integrations are welcome!

.. |grafana_logo| image:: https://upload.wikimedia.org/wikipedia/commons/a/a1/Grafana_logo.svg
    :alt: Grafana logo
    :height: 120
    :target: https://github.com/grafana/grafana

.. |kibana_logo| image:: https://miro.medium.com/max/1400/1*HW_x9ZvIbUkyaqHstsB1ig.png
    :alt: Kibana logo
    :height: 120
    :target: https://github.com/elastic/kibana

Comparison and profile extensions
---------------------------------

External libraries or custom functionality can be easily added to Profiles_ and Comparisons_.
If you developed an extension that could be generically used, then please consider contributing it to the package.

Popmon currently integrates:

* `Diptest `_

A Python/C++ implementation of Hartigan & Hartigan's dip test for unimodality.
The dip test tests for multimodality in a sample by taking the maximum difference, over all sample points, between the empirical distribution function, and the unimodal distribution function that minimizes that maximum difference.
Other than unimodality, it makes no further assumptions about the form of the null distribution.

To enable this extension install diptest using ``pip install diptest`` or ``pip install popmon[diptest]``.

Resources
=========

Presentations
-------------

+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| Title                                                                                          | Host                                                                                             | Date              | Speaker                 |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| popmon: Analysis Package for Dataset Shift Detection                                           | `SciPy Conference 2022 `_                                      | July 13, 2022     | Simon Brugman           |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| Popmon - population monitoring made easy                                                       | `Big Data Technology Warsaw Summit 2021 `_                        | February 25, 2021 | Simon Brugman           |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| Popmon - population monitoring made easy                                                       | `Data Lunch @ Eneco `_                                                    | October 29, 2020  | Max Baak, Simon Brugman |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| Popmon - population monitoring made easy                                                       | `Data Science Summit 2020 `_                                             | October 16, 2020  | Max Baak                |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| `Population Shift Monitoring Made Easy: the popmon package `_    | `Online Data Science Meetup @ ING WBAA `_ | July 8 2020       | Tomas Sostak            |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| `Popmon: Population Shift Monitoring Made Easy `_ | `PyData Fest Amsterdam 2020 `_                                    | June 16, 2020     | Tomas Sostak            |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+
| Popmon: Population Shift Monitoring Made Easy                                                  | `Amundsen Community Meetup `_                           | June 4, 2020      | Max Baak                |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+-------------------+-------------------------+


Articles
--------

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
| Title                                                                                                                                                                                             | Date             | Author                                      |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
|`POPMON v1.0.0: The Dataset-Shift Pokémon `_                                                                    | Aug 3, 2022      | Pradyot Patil                               |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
|`Monitoring Model Drift with Python `_                                                                   | April 16, 2022   | Jeanine Schoonemann                         |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
|`The Statistics Underlying the Popmon Hood `_                                                                           | April 15, 2022   | Jurriaan Nagelkerke and Jeanine Schoonemann |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
|`popmon: code breakfast session `_                                                                                                  | November 9, 2022 | Simon Brugman                               |       
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
| `Population Shift Analysis: Monitoring Data Quality with Popmon `_                                  | May 21, 2021     | Vito Gentile                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+
| `Popmon Open Source Package — Population Shift Monitoring Made Easy `_                                                    | May 20, 2020     | Nicole Mpozika                              |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+---------------------------------------------+


Software
--------

- `Kedro-popmon `_ is a plugin to integrate popmon reporting with kedro. This plugin allows you to automate the process of popmon feature and output stability monitoring. Package created by `Marian Dabrowski `_ and `Stephane Collot `_.

Project contributors
====================

This package was authored by ING Analytics Wholesale Banking (INGA WB).
Special thanks to the following people who have contributed to the development of this package: `Ahmet Erdem `_, `Fabian Jansen `_, `Nanne Aben `_, Mathieu Grimal.


Citing popmon
=============
If ``popmon`` has been relevant in your work, and you would like to acknowledge the project in your publication, we suggest citing the following paper:

* Brugman, S., Sostak, T., Patil, P., Baak, M. *popmon: Analysis Package for Dataset Shift Detection*. Proceedings of the 21st Python in Science Conference. 161-168 (2022). (`link `_)

*In BibTeX format:*

.. code-block:: bibtex

    @InProceedings{ popmon-proc-scipy-2022,
      author    = { {S}imon {B}rugman and {T}omas {S}ostak and {P}radyot {P}atil and {M}ax {B}aak },
      title     = { popmon: {A}nalysis {P}ackage for {D}ataset {S}hift {D}etection },
      booktitle = { {P}roceedings of the 21st {P}ython in {S}cience {C}onference },
      pages     = { 161 - 168 },
      year      = { 2022 },
      editor    = { {M}eghann {A}garwal and {C}hris {C}alloway and {D}illon {N}iederhut and {D}avid {S}hupe },
    }



Contact and support
===================

* Issues & Ideas & Support: https://github.com/ing-bank/popmon/issues

Please note that INGA WB provides support only on a best-effort basis.

License
=======
Copyright INGA WB. `popmon` is completely free, open-source and licensed under the `MIT license `_.

.. |logo| image:: https://raw.githubusercontent.com/ing-bank/popmon/master/docs/source/assets/popmon-logo.png
    :alt: POPMON logo
    :target: https://github.com/ing-bank/popmon
.. |example| image:: https://raw.githubusercontent.com/ing-bank/popmon/master/docs/source/assets/report_overview.png
    :alt: Traffic Light Overview
.. |histograms| image:: https://raw.githubusercontent.com/ing-bank/popmon/master/docs/source/assets/histogram_inspector.png
    :alt: Histogram inspector
.. |pipeline| image:: https://raw.githubusercontent.com/ing-bank/popmon/master/docs/source/assets/pipeline.png
    :alt: Pipeline Visualization
    :target: https://github.com/ing-bank/popmon/files/7417124/pipeline_amazingpipeline_subgraphs_unversioned.pdf
.. |build| image:: https://github.com/ing-bank/popmon/workflows/build/badge.svg
    :alt: Build status
.. |ruff| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v1.json
    :alt: Ruff
    :target: https://github.com/charliermarsh/ruff
.. |docs| image:: https://readthedocs.org/projects/popmon/badge/?version=latest
    :alt: Package docs status
    :target: https://popmon.readthedocs.io
.. |release| image:: https://img.shields.io/github/v/release/ing-bank/popmon
    :alt: Latest GitHub release
    :target: https://github.com/ing-bank/popmon/releases
.. |release_date| image:: https://img.shields.io/github/release-date/ing-bank/popmon
    :alt: GitHub Release Date
    :target: https://github.com/ing-bank/popmon/releases

.. |notebook_basic_colab| image:: https://colab.research.google.com/assets/colab-badge.svg
    :alt: Open in Colab
    :target: https://colab.research.google.com/github/ing-bank/popmon/blob/master/popmon/notebooks/popmon_tutorial_basic.ipynb
.. |notebook_advanced_colab| image:: https://colab.research.google.com/assets/colab-badge.svg
    :alt: Open in Colab
    :target: https://colab.research.google.com/github/ing-bank/popmon/blob/master/popmon/notebooks/popmon_tutorial_advanced.ipynb
.. |notebook_incremental_data_colab| image:: https://colab.research.google.com/assets/colab-badge.svg
    :alt: Open in Colab
    :target: https://colab.research.google.com/github/ing-bank/popmon/blob/master/popmon/notebooks/popmon_tutorial_incremental_data.ipynb
.. |notebook_reports_colab| image:: https://colab.research.google.com/assets/colab-badge.svg
    :alt: Open in Colab
    :target: https://colab.research.google.com/github/ing-bank/popmon/blob/master/popmon/notebooks/popmon_tutorial_reports.ipynb
.. |downloads| image:: https://pepy.tech/badge/popmon
    :alt: PyPi downloads
    :target: https://pepy.tech/project/popmon

.. _profiles: https://popmon.readthedocs.io/en/latest/profiles.html
.. _comparisons: https://popmon.readthedocs.io/en/latest/comparisons.html

Owner

  • Name: ING Bank
  • Login: ing-bank
  • Kind: organization
  • Email: OpenSource@ING.com
  • Location: Amsterdam, the Netherlands

ING Open-source projects

Citation (CITATION.cff)

type: proceedings
title: "popmon: Analysis Package for Dataset Shift Detection"
authors:
- family-names: Brugman
  given-names: Simon
- family-names: Sostak
  given-names: Tomas
- family-names: Pradyot
  given-names: Patil
- family-names: Baak
  given-names: Max
year: "2022"
collection-title: "Proceedings of the 21st Python in Science Conference"
editors:
- family-names: Agarwal
  given-names: Meghann
- family-names: Calloway
  given-names: Chris
- family-names: Niederhut
  given-names: Dillon
- family-names: Shupe
  given-names: David
start: '161'
end: '168'
conference:
    name: "Python in Science Conference"
    address: "Austin, Texas"

GitHub Events

Total
  • Create event: 13
  • Release event: 5
  • Issues event: 2
  • Watch event: 11
  • Delete event: 8
  • Issue comment event: 14
  • Push event: 21
  • Pull request review event: 8
  • Pull request review comment event: 4
  • Pull request event: 10
  • Fork event: 1
Last Year
  • Create event: 13
  • Release event: 5
  • Issues event: 2
  • Watch event: 11
  • Delete event: 8
  • Issue comment event: 14
  • Push event: 21
  • Pull request review event: 8
  • Pull request review comment event: 4
  • Pull request event: 10
  • Fork event: 1

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 462
  • Total Committers: 19
  • Avg Commits per committer: 24.316
  • Development Distribution Score (DDS): 0.21
Past Year
  • Commits: 5
  • Committers: 3
  • Avg Commits per committer: 1.667
  • Development Distribution Score (DDS): 0.4
Top Committers
Name Email Commits
Simon Brugman s****n@g****m 365
Tomas s****s@g****m 26
github-actions a****n@g****m 15
Max Baak m****k@g****m 14
github-actions g****s@g****m 7
pre-commit-ci[bot] 6****] 6
Stephane Collot s****t@i****m 4
Simon Brugman s****n@g****o 4
Pradyot Patil p****l@g****m 3
Simon Brugman s****n@i****m 3
KX79WQ m****k@i****m 3
Ralph Urlus r****v@g****m 2
alexflex47 a****n@g****m 2
dependabot-preview[bot] 2****] 2
semantic-release s****e 2
Mateusz Kopeć 3****7 1
Patil p****l@i****m 1
Ruud Kassing r****g@r****m 1
saracarozza s****a@o****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 39
  • Total pull requests: 96
  • Average time to close issues: 3 months
  • Average time to close pull requests: 13 days
  • Total issue authors: 12
  • Total pull request authors: 9
  • Average comments per issue: 1.74
  • Average comments per pull request: 0.4
  • Merged pull requests: 81
  • Bot issues: 0
  • Bot pull requests: 5
Past Year
  • Issues: 1
  • Pull requests: 15
  • Average time to close issues: about 2 months
  • Average time to close pull requests: 4 days
  • Issue authors: 1
  • Pull request authors: 4
  • Average comments per issue: 2.0
  • Average comments per pull request: 0.93
  • Merged pull requests: 12
  • Bot issues: 0
  • Bot pull requests: 1
Top Authors
Issue Authors
  • sbrugman (27)
  • mi2354 (2)
  • marrrcin (1)
  • mkopec87 (1)
  • gus-morales (1)
  • pradyot-09 (1)
  • qwert666 (1)
  • lcheng61 (1)
  • lettergram (1)
  • ruudkassing (1)
  • twalen (1)
  • drandas07 (1)
Pull Request Authors
  • sbrugman (67)
  • mbaak (13)
  • dependabot[bot] (5)
  • pradyot-09 (5)
  • mkopec87 (2)
  • stephanecollot (1)
  • ruudkassing (1)
  • Sharath302 (1)
  • RUrlus (1)
Top Labels
Issue Labels
enhancement (21) reporting (9) good first issue (8) help wanted (8) CI (4) internal improvement (4) bug (4) statistics (4) API (3) integrations (2) documentation (2) hacktoberfest (2) dependencies (1)
Pull Request Labels
dependencies (5) reporting (3) enhancement (3)

Packages

  • Total packages: 2
  • Total downloads:
    • pypi 4,961 last-month
  • Total dependent packages: 1
    (may contain duplicates)
  • Total dependent repositories: 6
    (may contain duplicates)
  • Total versions: 81
  • Total maintainers: 3
pypi.org: popmon

Monitor the stability of a pandas or spark dataset

  • Documentation: https://popmon.readthedocs.io/
  • License: Copyright 2023 ING Analytics Wholesale Banking Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  • Latest release: 1.4.11
    published 4 months ago
  • Versions: 41
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 4,961 Last month
Rankings
Downloads: 3.1%
Average: 4.6%
Dependent packages count: 4.8%
Dependent repos count: 6.0%
Maintainers (3)
Last synced: 4 months ago
proxy.golang.org: github.com/ing-bank/popmon
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 6.5%
Average: 6.7%
Dependent repos count: 7.0%
Last synced: 4 months ago

Dependencies

.github/workflows/build.yml actions
  • actions/cache v3 composite
  • actions/checkout v2 composite
  • actions/setup-python v1 composite
  • actions/upload-artifact v2 composite
.github/workflows/codeql-analysis.yml actions
  • actions/checkout v2 composite
  • github/codeql-action/analyze v1 composite
  • github/codeql-action/autobuild v1 composite
  • github/codeql-action/init v1 composite
.github/workflows/commit.yml actions
  • actions/checkout v2 composite
  • wagoid/commitlint-github-action v3 composite
.github/workflows/release.yml actions
  • actions/checkout v2 composite
  • relekang/python-semantic-release master composite
docs/requirements.txt pypi
  • docutils <0.17
  • myst_parser *
  • sphinx_autodoc_typehints *
  • sphinx_rtd_theme >=1.0.0
requirements.txt pypi
  • histogrammar >=1.0.32
  • htmlmin *
  • jinja2 *
  • joblib >=0.14.0
  • numpy >=1.18.0
  • pandas >=0.25.1
  • phik *
  • plotly >=5.8.0
  • pydantic *
  • scipy >=1.5.2
  • tqdm *
  • typing_extensions *
pyproject.toml pypi
  • histogrammar >=1.0.32
  • htmlmin *
  • jinja2 *
  • joblib >=0.14.0
  • numpy >=1.18.0
  • pandas >=0.25.1,<2
  • phik *
  • plotly >=5.8.0
  • pydantic >=2
  • pydantic-settings *
  • scipy >=1.5.2
  • tqdm *
  • typing_extensions *