All Projects → andgoldschmidt → derivative

andgoldschmidt / derivative

Licence: other
Optimal numerical differentiation of noisy time series data in python.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to derivative

NumDiff
Modern Fortran Numerical Differentiation Library
Stars: ✭ 48 (+41.18%)
Mutual labels:  differentiation, numerical-differentiation
Mathnet Numerics
Math.NET Numerics
Stars: ✭ 2,688 (+7805.88%)
Mutual labels:  differentiation
Gorgonia
Gorgonia is a library that helps facilitate machine learning in Go.
Stars: ✭ 4,295 (+12532.35%)
Mutual labels:  differentiation
XDiff.jl
eXpression differentiation in Julia
Stars: ✭ 28 (-17.65%)
Mutual labels:  differentiation
calculus
The original Golang library for single variable differentiation and integration.
Stars: ✭ 24 (-29.41%)
Mutual labels:  differentiation
Bracmat
Programming language for symbolic computation with unusual combination of pattern matching features: Tree patterns, associative patterns and expressions embedded in patterns.
Stars: ✭ 42 (+23.53%)
Mutual labels:  differentiation
clad
clad -- automatic differentiation for C/C++
Stars: ✭ 161 (+373.53%)
Mutual labels:  differentiation
FractionalCalculus.jl
FractionalCalculus.jl: A Julia package for high performance, fast convergence and high precision numerical fractional calculus computing.
Stars: ✭ 22 (-35.29%)
Mutual labels:  differentiation
MathExpressions.NET
➗ Library for parsing math expressions with rational numbers, finding their derivatives and compiling an optimal IL code
Stars: ✭ 63 (+85.29%)
Mutual labels:  differentiation
FreeSolv
Experimental and calculated small molecule hydration free energies
Stars: ✭ 64 (+88.24%)
Mutual labels:  experimental-data
GuthrieSolv
Experimental small molecule hydration free energy dataset
Stars: ✭ 30 (-11.76%)
Mutual labels:  experimental-data
sparsebn
Software for learning sparse Bayesian networks
Stars: ✭ 41 (+20.59%)
Mutual labels:  experimental-data
NM
Numerical Methods (NM) for BE Electrical II Year / II Part, Email: [email protected]
Stars: ✭ 13 (-61.76%)
Mutual labels:  numerical-differentiation

Documentation Status PyPI Zenodo 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.
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)

Contributors:

Thanks to the members of the community who have contributed!

Jacob Stevens-Haas Kalman derivatives #12

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

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}
  }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].