From b578ec509a562fc25c8e02ae1f16e3c18c247ccb Mon Sep 17 00:00:00 2001 From: whitews Date: Mon, 9 Oct 2023 09:09:54 -0400 Subject: [PATCH] update README with min Python version --- README.md | 2 +- docs/source/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 01a22e9..111638e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Want to cite KDEpy in your work? See the [bottom right part of this website](htt ## About -This Python 3.7+ package implements various kernel density estimators (KDE). +This Python 3.8+ package implements various kernel density estimators (KDE). Three algorithms are implemented through the same API: [`NaiveKDE`](https://kdepy.readthedocs.io/en/latest/API.html#naivekde), [`TreeKDE`](https://kdepy.readthedocs.io/en/latest/API.html#treekde) and [`FFTKDE`](https://kdepy.readthedocs.io/en/latest/API.html#fftkde). The class [`FFTKDE`](https://kdepy.readthedocs.io/en/latest/API.html#fftkde) outperforms other popular implementations, see the [comparison page](https://kdepy.readthedocs.io/en/latest/comparison.html). **The code is stable and in widespread use by practitioners and in other packages.** diff --git a/docs/source/index.rst b/docs/source/index.rst index 138a353..93c311d 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -3,7 +3,7 @@ KDEpy .. currentmodule:: KDEpy -This Python 3.7+ package implements various Kernel Density Estimators (KDE). +This Python 3.8+ package implements various Kernel Density Estimators (KDE). Three algorithms are implemented through the same API: :class:`~KDEpy.NaiveKDE.NaiveKDE`, :class:`~KDEpy.TreeKDE.TreeKDE` and :class:`~KDEpy.FFTKDE.FFTKDE`. The :class:`~KDEpy.FFTKDE.FFTKDE` outperforms other popular implementations, see the `comparison page `_.