1- # CSAPS: Cubic spline approximation (smoothing)
2-
3- [ ![ PyPI version] ( https://img.shields.io/pypi/v/csaps.svg )] ( https://pypi.python.org/pypi/csaps )
4- [ ![ Documentation Status] ( https://readthedocs.org/projects/csaps/badge/?version=latest )] ( https://csaps.readthedocs.io/en/latest/?badge=latest )
5- [ ![ Build status] ( https://travis-ci.org/espdev/csaps.svg?branch=master )] ( https://travis-ci.org/espdev/csaps )
6- [ ![ Coverage Status] ( https://coveralls.io/repos/github/espdev/csaps/badge.svg?branch=master )] ( https://coveralls.io/github/espdev/csaps?branch=master )
7- ![ Supported Python versions] ( https://img.shields.io/pypi/pyversions/csaps.svg )
8- [ ![ License] ( https://img.shields.io/pypi/l/csaps.svg )] ( LICENSE )
9-
10- ** csaps** is a package for univariate, multivariate and nd-gridded data approximation using cubic smoothing splines.
1+ <p align =" center " >
2+ <a href =" https://github.com/espdev/csaps " ><img src =" https://user-images.githubusercontent.com/1299189/76571441-8d97e400-64c8-11ea-8c05-58850f8311a1.png " alt =" csaps " width =" 400 " /></a ><br >
3+ </p >
4+
5+ <p align =" center " >
6+ <a href =" https://pypi.python.org/pypi/csaps " ><img src =" https://img.shields.io/pypi/v/csaps.svg " alt =" PyPI version " /></a >
7+ <a href =" https://csaps.readthedocs.io/en/latest/?badge=latest " ><img src =" https://readthedocs.org/projects/csaps/badge/?version=latest " alt =" Documentation Status " /></a >
8+ <a href =" https://travis-ci.org/espdev/csaps " ><img src =" https://travis-ci.org/espdev/csaps.svg?branch=master " alt =" Build status " /></a >
9+ <a href =" https://coveralls.io/github/espdev/csaps?branch=master " ><img src =" https://coveralls.io/repos/github/espdev/csaps/badge.svg?branch=master " alt =" Coverage Status " /></a >
10+ <a href =" https://pypi.python.org/pypi/csaps " ><img src =" https://img.shields.io/pypi/pyversions/csaps.svg " alt =" Supported Python versions " /></a >
11+ <a href =" https://choosealicense.com/licenses/mit/ " ><img src =" https://img.shields.io/pypi/l/csaps.svg " alt =" License " /></a >
12+ </p >
13+
14+ ** csaps** is a Python package for univariate, multivariate and n-dimensional grid data approximation using cubic smoothing splines.
15+ The package can be useful in practical engineering tasks for data approximation and smoothing.
1116
1217## Installation
1318
14- Python 3.6 or above is supported.
19+ Use pip for installing:
1520
1621```
1722pip install -U csaps
1823```
1924
20- The module depends only on NumPy and SciPy.
25+ The module depends only on NumPy and SciPy. Python 3.6 or above is supported.
2126
2227## Simple Examples
2328
@@ -43,7 +48,9 @@ plt.plot(x, y, 'o', xs, ys, '-')
4348plt.show()
4449```
4550
46- ![ univariate] ( https://user-images.githubusercontent.com/1299189/72231304-cd774380-35cb-11ea-821d-d5662cc1eedf.png )
51+ <p align =" center " >
52+ <img src =" https://user-images.githubusercontent.com/1299189/72231304-cd774380-35cb-11ea-821d-d5662cc1eedf.png " alt =" univariate " />
53+ <p />
4754
4855A surface data smoothing:
4956
@@ -76,7 +83,9 @@ ax.view_init(elev=9., azim=290)
7683plt.show()
7784```
7885
79- ![ surface] ( https://user-images.githubusercontent.com/1299189/72231252-7a9d8c00-35cb-11ea-8890-487b8a7dbd1d.png )
86+ <p align =" center " >
87+ <img src =" https://user-images.githubusercontent.com/1299189/72231252-7a9d8c00-35cb-11ea-8890-487b8a7dbd1d.png " alt =" surface " />
88+ <p />
8089
8190## Documentation
8291
0 commit comments