This package performs KDE operations on multidimensional data to: 1) calculate estimated PDFs (probability distribution functions), and 2) resample new data from those PDFs.
A number of examples (also used for continuous integration testing) are included in the package notebooks. Some background information and references are included in the JOSS paper.
Full documentation is available on kalepy.readthedocs.io.
pip install kalepy
git clone https://github.com/lzkelley/kalepy.git
pip install -e kalepy/
In this case the package can easily be updated by changing into the source directory, pulling, and rebuilding:
cd kalepy
git pull
pip install -e .
# Optional: run unit tests (using the `pytest` package)
pytest