A Python implementation of R's stats::smooth() Tukey's (running median) smoother
- TODO - Replace C/R-style coding with more Pythonic methods
- Python 3.8, 3.9, or 3.10
- Numpy 1.20
You can install pysmooth via pip from PyPI:
$ pip install pysmooth
Pysmooth is intended to be used within another module.
from pysmooth import smooth
smooth(x=arr, kind="3RS3R", twiceit=False, endrule="Tukey")
Contributions are very welcome. To learn more, see the Contributor Guide.
Distributed under the terms of the GPL 3.0 license, Pysmooth is free and open source software.
If you encounter any problems, please file an issue along with a detailed description.
This project was generated from @cjolowicz's Hypermodern Python Cookiecutter template.