Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.96 KB

_README_prepend.md

File metadata and controls

52 lines (36 loc) · 1.96 KB

kalepy: Kernel Density Estimation and Sampling

Build Status codecov Documentation Status DOI DOI

kalepy animated logo

This package performs KDE operations on multidimensional data to: 1) calculate estimated PDFs (probability distribution functions), and 2) resample new data from those PDFs.

Documentation

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.

README Contents

Installation

from pypi (i.e. via pip)

pip install kalepy

from source (e.g. for development)

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