Skip to main content

Numerical differentiation in python.

Project description

Documentation Status PyPI Zenodo GithubCI MIT License

Numerical differentiation of noisy time series data in python

derivative is a Python package for differentiating noisy data. The package showcases a variety of improvements that can be made over finite differences when data is not clean.

Want to see an example of how derivative can help? This package is part of PySINDy (github.com/dynamicslab/pysindy), a sparse-regression framework for discovering nonlinear dynamical systems from data.

This package binds common differentiation methods to a single easily implemented differentiation interface to encourage user adaptation. Numerical differentiation methods for noisy time series data in python includes:

  1. Symmetric finite difference schemes using arbitrary window size.

  2. Savitzky-Galoy derivatives (aka polynomial-filtered derivatives) of any polynomial order with independent left and right window parameters.

  3. Spectral derivatives with optional filter.

  4. Spline derivatives of any order.

  5. Polynomial-trend-filtered derivatives generalizing methods like total variational derivatives.

  6. Kalman derivatives find the maximum likelihood estimator for a derivative described by a Brownian motion.

  7. Kernel derivatives smooth a random process defined by its kernel (covariance).

from derivative import dxdt
import numpy as np

t = np.linspace(0,2*np.pi,50)
x = np.sin(x)

# 1. Finite differences with central differencing using 3 points.
result1 = dxdt(x, t, kind="finite_difference", k=1)

# 2. Savitzky-Golay using cubic polynomials to fit in a centered window of length 1
result2 = dxdt(x, t, kind="savitzky_golay", left=.5, right=.5, order=3)

# 3. Spectral derivative
result3 = dxdt(x, t, kind="spectral")

# 4. Spline derivative with smoothing set to 0.01
result4 = dxdt(x, t, kind="spline", s=1e-2)

# 5. Total variational derivative with regularization set to 0.01
result5 = dxdt(x, t, kind="trend_filtered", order=0, alpha=1e-2)

# 6. Kalman derivative with smoothing set to 1
result6 = dxdt(x, t, kind="kalman", alpha=1)

# 7. Kernel derivative with smoothing set to 1
result7 = dxdt(x, t, kind="kernel", sigma=1, lmbd=.1, kernel="rbf")

Contributors:

Thanks to the members of the community who have contributed!

Jacob Stevens-Haas

Kalman derivatives #12, and more!

References:

[1] Numerical differentiation of experimental data: local versus global methods- K. Ahnert and M. Abel

[2] Numerical Differentiation of Noisy, Nonsmooth Data- Rick Chartrand

[3] The Solution Path of the Generalized LASSO- R.J. Tibshirani and J. Taylor

[4] A Kernel Approach for PDE Discovery and Operator Learning - D. Long et al.

Citing derivative:

The derivative package is a contribution to PySINDy; this work has been published in the Journal of Open Source Software (JOSS). If you use derivative in your work, please cite it using the following reference:

Kaptanoglu et al., (2022). PySINDy: A comprehensive Python package for robust sparse system identification. Journal of Open Source Software, 7(69), 3994, https://doi.org/10.21105/joss.03994

@article{kaptanoglu2022pysindy,
        doi = {10.21105/joss.03994},
        url = {https://doi.org/10.21105/joss.03994},
        year = {2022},
        publisher = {The Open Journal},
        volume = {7},
        number = {69},
        pages = {3994},
        author = {Alan A. Kaptanoglu and Brian M. de Silva and Urban Fasel and Kadierdan Kaheman and Andy J. Goldschmidt and Jared Callaham and Charles B. Delahunt and Zachary G. Nicolaou and Kathleen Champion and Jean-Christophe Loiseau and J. Nathan Kutz and Steven L. Brunton},
        title = {PySINDy: A comprehensive Python package for robust sparse system identification},
        journal = {Journal of Open Source Software}
        }

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

derivative-0.6.3.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

derivative-0.6.3-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file derivative-0.6.3.tar.gz.

File metadata

  • Download URL: derivative-0.6.3.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.9.19 Linux/6.5.0-1025-azure

File hashes

Hashes for derivative-0.6.3.tar.gz
Algorithm Hash digest
SHA256 72e7fd56e92665f939b5449c4b9ceea88fdf02eda7378cf0a3e961ab0df58181
MD5 e2d715f5e5731de55886302ea112162e
BLAKE2b-256 c5e879b4127aa6b797b7a74fa20635229e2d97af384fb1950d25700a2fce13a2

See more details on using hashes here.

File details

Details for the file derivative-0.6.3-py3-none-any.whl.

File metadata

  • Download URL: derivative-0.6.3-py3-none-any.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.9.19 Linux/6.5.0-1025-azure

File hashes

Hashes for derivative-0.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e121926a21e13a5ab1db07e10e26a5e805494a1255eac032c2fba309547e64c9
MD5 3363f0e6a53066a121e67a638b30568a
BLAKE2b-256 cd3a6a615fa5a1fb1e11f0ad41febedea907a2f20a310f7a9fc5b3a16639c2ad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page