PySINDy

PySINDy: A comprehensive Python package for robust sparse system identification - Published in JOSS (2022)

https://github.com/dynamicslab/pysindy

Science Score: 95.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 26 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: arxiv.org, joss.theoj.org, zenodo.org
  • Committers with academic emails
    8 of 35 committers (22.9%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords

dynamical-systems machine-learning model-discovery nonlinear-dynamics sparse-regression system-identification

Keywords from Contributors

stellarator sensor fusion nuclear-fusion plasma plasma-physics

Scientific Fields

Economics Social Sciences - 60% confidence
Materials Science Physical Sciences - 40% confidence
Last synced: 4 months ago · JSON representation

Repository

A package for the sparse identification of nonlinear dynamical systems from data

Basic Info
Statistics
  • Stars: 1,648
  • Watchers: 31
  • Forks: 349
  • Open Issues: 70
  • Releases: 38
Topics
dynamical-systems machine-learning model-discovery nonlinear-dynamics sparse-regression system-identification
Created over 6 years ago · Last pushed 4 months ago
Metadata Files
Readme License

README.rst

PySINDy
=========

|BuildCI| |RTD| |PyPI| |Codecov| |JOSS1| |JOSS2| |DOI|

**PySINDy** is a sparse regression package with several implementations for the Sparse Identification of Nonlinear Dynamical systems (SINDy) method introduced in Brunton et al. (2016a), including the unified optimization approach of Champion et al. (2019), SINDy with control from Brunton et al. (2016b), Trapping SINDy from Kaptanoglu et al. (2021), SINDy-PI from Kaheman et al. (2020), PDE-FIND from Rudy et al. (2017), and so on. A comprehensive literature review is given in de Silva et al. (2020) and Kaptanoglu, de Silva et al. (2021).

.. contents:: Table of contents

System identification
---------------------
System identification refers to the process of leveraging measurement data to infer governing equations, in the form of dynamical systems, describing the data. Once discovered, these equations can make predictions about future states, can inform control inputs, or can enable the theoretical study using analytical techniques.
Dynamical systems are a flexible, well-studied class of mathematical objects for modeling systems evolving in time.
SINDy is a model discovery method which uses *sparse regression* to infer nonlinear dynamical systems from measurement data.
The resulting models are inherently *interpretable* and *generalizable*.

How it works
^^^^^^^^^^^^
Suppose, for some physical system of interest, we have measurements of state variables ``x(t)`` (a vector of length n) at different points in time. Examples of state variables include the position, velocity, or acceleration of objects; lift, drag, or angle of attack of aerodynamic objects; and concentrations of different chemical species. If we suspect that the system could be well-modeled by a dynamical system of the form

.. code-block:: text

    x'(t) = f(x(t)),

then we can use SINDy to learn ``f(x)`` from the data (``x'(t)`` denotes the time derivative of ``x(t)``). Note that both ``f(x)`` and ``x(t)`` are typically vectors. The fundamental assumption SINDy employs is that each component of ``f(x)``, ``f_i(x)`` can be represented as a *sparse* linear combination of basis functions ``theta_j(x)``

.. code-block:: text

    f_i(x) = theta_1(x) * xi_{1,i} + theta_2(x) * xi_{2,i} + ... + theta_k * xi{k,i}

Concatenating all the objects into matrices (denoted with capitalized names) helps to simplify things.
To this end we place all measurements of the state variables into a data matrix ``X`` (with a row per time measurement and a column per variable), the derivatives of the state variables into a matrix ``X'``, all basis functions evaluated at all points in time into a matrix ``Theta(X)`` (each basis function gets a column), and all coefficients into a third matrix ``Xi`` (one column per state variable).
The approximation problem to be solved can then be compactly written as

.. code-block:: text

    X' = Theta(X) * Xi.

Each row of this matrix equation corresponds to one coordinate function of ``f(x)``.
SINDy employs sparse regression techniques to find a solution ``Xi`` with sparse column vectors.
For a more in-depth look at the mathematical foundations of SINDy, please see our `introduction to SINDy `__.

Relation to PySINDy
^^^^^^^^^^^^^^^^^^^
The PySINDy package revolves around the ``SINDy`` class which consists of three primary components; one for each term in the above matrix approximation problem.

* ``differentiation_method``: computes ``X'``, though if derivatives are known or measured directly, they can be used instead
* ``feature_library``: specifies the candidate basis functions to be used to construct ``Theta(X)``
* ``optimizer``: implements a sparse regression method for solving for ``Xi``

Once a ``SINDy`` object has been created it must be fit to measurement data, similar to a ``scikit-learn`` model. It can then be used to predict derivatives given new measurements, evolve novel initial conditions forward in time, and more. PySINDy has been written to be as compatible with ``scikit-learn`` objects and methods as possible.

Example
^^^^^^^
Suppose we have measurements of the position of a particle obeying the following dynamical system at different points in time

.. code-block:: text

  x' = -2x
  y' = y

Note that this system of differential equations decouples into two differential equations whose solutions are simply ``x(t) = x_0 * exp(-2 * t)`` and ``y(t) = y_0 * exp(t)``, where ``x_0 = x(0)`` and ``y_0 = y(0)`` are the initial conditions.

Using the initial conditions ``x_0 = 3`` and ``y_0 = 0.5``, we construct the data matrix ``X``.

.. code-block:: python

  import numpy as np
  import pysindy as ps

  t = np.linspace(0, 1, 100)
  x = 3 * np.exp(-2 * t)
  y = 0.5 * np.exp(t)
  X = np.stack((x, y), axis=-1)  # First column is x, second is y

To instantiate a ``SINDy`` object with the default differentiation method, feature library, and optimizer and then fit it to the data, we invoke

.. code-block:: python

  model = ps.SINDy(feature_names=["x", "y"])
  model.fit(X, t=t)

We use the ``feature_names`` argument so that the model prints out the correct labels for ``x`` and ``y``. We can inspect the governing equations discovered by the model and check whether they seem reasonable with the ``print`` function.

.. code-block:: python

  model.print()

which prints the following

.. code-block:: text

  x' = -2.000 x
  y' = 1.000 y

PySINDy provides numerous other features not shown here. We recommend the `feature overview `__ section of the documentation for a more exhaustive summary of additional features.

Installation
------------

Installing with pip
^^^^^^^^^^^^^^^^^^^

If you are using Linux or macOS you can install PySINDy with pip:

.. code-block:: bash

  pip install pysindy

Installing from source
^^^^^^^^^^^^^^^^^^^^^^
First clone this repository:

.. code-block:: bash

  git clone https://github.com/dynamicslab/pysindy.git

Then, to install the package, run

.. code-block:: bash

  pip install .

If you do not have root access, you should add the ``--user`` option to the above lines.

Caveats
^^^^^^^

To run the unit tests, or example notebooks, you should install the dev-dependencies with:

.. code-block:: bash

  pip install pysindy[dev]

or if you are installing from a local copy

.. code-block:: bash

  pip install .[dev]

To build a local copy of the documentation, you should install the docs-dependencies with:

.. code-block:: bash

  pip install pysindy[docs]

If you are looking to use convex optimization provided by `cvxpy `__, then you have to install

.. code-block:: bash

    pip install pysindy[cvxpy]

to utilize Mixed-Integer Optimized Sparse Regression (MIOSR) via `GurobiPy `__, you
require

.. code-block:: bash

    pip install pysindy[miosr]


Documentation
-------------
The documentation site for PySINDy can be found `here `__. There are numerous `examples `_ of PySINDy in action to help you get started. Examples are also available as `Jupyter notebooks `__. A video overview of PySINDy can be found on `Youtube `__. We have also created a `video playlist `__ with practical PySINDy tips.

PySINDy implements a lot of advanced functionality that may be overwhelming for new users or folks who are unfamiliar with these methods. Below (see here if image does not render https://github.com/dynamicslab/pysindy/blob/master/docs/JOSS2/Fig3.png), we provide a helpful flowchart for figuring out which methods to use, given the characteristics of your dataset:

.. image:: https://github.com/dynamicslab/pysindy/blob/master/docs/JOSS2/Fig3.png

This flow chart summarizes how ``PySINDy`` users can start with a dataset and systematically choose the proper candidate library and sparse regression optimizer that are tailored for a specific scientific task. The ``GeneralizedLibrary`` class allows for tensoring, concatenating, and otherwise combining many different candidate libraries.

Community guidelines
--------------------

Contributing examples
^^^^^^^^^^^^^^^^^^^^^
We love seeing examples of PySINDy being used to solve interesting problems! If you would like to contribute an example to the documentation, reach out to us by creating an issue.

Examples are external repositories that
`follow a structure `_ that pysindy
knows how to incorporate into its documentation build.  They tend to be pinned to
a set of dependencies and may not be kept up to date with breaking API changes.

The linked repository has information on how to set up your example.  To PR the example
into this repository, (a) edit examples/external.yml and examples/README.rst with your
repository information and (b) verify your own build passes in your repository,
including publishing on github pages.  If you want to keep your example up to date with
the pysindy main branch, (c) add your repository information to the ``notify-experiments``
workflow so that pysindy will trigger your notebooks to be run in CI in your own repo.
This will require adding a
`fine-grained PAT `_
with the permissions ``contents: read & write`` and ``metadata: read only`` to the
pysindy GH secrets. Alternatively, you can just trigger your builds based on cron timing.
See the pysindy experiments repo for more information.


Contributing code
^^^^^^^^^^^^^^^^^
We welcome contributions to PySINDy. To contribute a new feature please submit a pull request. To get started we recommend installing an editable ``dev`` version from a local clone via

.. code-block:: bash

    pip install -e .[dev]

This will allow you to run unit tests and automatically format your code. To be accepted your code should conform to PEP8 and pass all unit tests. Code can be tested by invoking

.. code-block:: bash

    pytest

We recommend using ``pre-commit`` to format your code. The easiest approach is to install pre-commit via

.. code-block:: bash

    pre-commit install

After which pre-commit will automatically check all future commits. Once you have staged changes to commit

.. code-block:: bash

    git add path/to/changed/file.py

Pre-commit will then automatically run all checks against your committed code. If you want to trigger this manually, you can run the following to automatically reformat your staged code

.. code-block:: bash

    pre-commit

Note that you will then need to re-stage any changes ``pre-commit`` made to your code.

Building documentation requires the ``docs`` dependencies, which can be installed with either

.. code-block:: bash

    pip install pysindy[docs]

or with

.. code-block:: bash

    pip install .[docs]

for a local clone of the repository. Once installed, run

.. code-block:: bash

    python -m sphinx -TEb html -d _build/doctrees -D language=en . ./build

Or check the build step in the most recent CI run or [RTD build](https://readthedocs.org/projects/pysindy/builds/).

There are a number of SINDy variants and advanced functionality that would be great to implement in future releases:

1. Bayesian SINDy, for instance that from Hirsh, Seth M., David A. Barajas-Solano, and J. Nathan Kutz. "Sparsifying Priors for Bayesian Uncertainty Quantification in Model Discovery." arXiv preprint arXiv:2107.02107 (2021).

2. Tensor SINDy, using the methods in Gelß, Patrick, et al. "Multidimensional approximation of nonlinear dynamical systems." Journal of Computational and Nonlinear Dynamics 14.6 (2019).

3. Stochastic SINDy, using the methods in Brückner, David B., Pierre Ronceray, and Chase P. Broedersz. "Inferring the dynamics of underdamped stochastic systems." Physical review letters 125.5 (2020): 058103.

4. Integration of PySINDy with a Python model-predictive control (MPC) code.

5. The PySINDy weak formulation is based on the work in Reinbold, Patrick AK, Daniel R. Gurevich, and Roman O. Grigoriev. "Using noisy or incomplete data to discover models of spatiotemporal dynamics." Physical Review E 101.1 (2020): 010203. It might be useful to additionally implement the weak formulation from Messenger, Daniel A., and David M. Bortz. "Weak SINDy for partial differential equations." Journal of Computational Physics (2021): 110525. The weak formulation in PySINDy is also fairly slow and computationally intensive, so finding ways to speed up the code would be great.

6. The blended conditional gradients (BCG) algorithm for solving the constrained LASSO problem, Carderera, Alejandro, et al. "CINDy: Conditional gradient-based Identification of Non-linear Dynamics--Noise-robust recovery." arXiv preprint arXiv:2101.02630 (2021).

Reporting issues or bugs
^^^^^^^^^^^^^^^^^^^^^^^^
If you find a bug in the code or want to request a new feature, please open an issue.

Getting help
^^^^^^^^^^^^
For help using PySINDy please consult the `documentation `__ and/or our `examples `__, or create an issue.

Citing PySINDy
--------------
PySINDy has been published in the Journal of Open Source Software (JOSS). The paper can be found `here `__.

If you use PySINDy in your work, please cite it using the following two references:

Brian M. de Silva, Kathleen Champion, Markus Quade, Jean-Christophe Loiseau, J. Nathan Kutz, and Steven L. Brunton., (2020). *PySINDy: A Python package for the sparse identification of nonlinear dynamical systems from data.* Journal of Open Source Software, 5(49), 2104, https://doi.org/10.21105/joss.02104

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

Bibtex:

.. code-block:: text

    @article{desilva2020,
    doi = {10.21105/joss.02104},
    url = {https://doi.org/10.21105/joss.02104},
    year = {2020},
    publisher = {The Open Journal},
    volume = {5},
    number = {49},
    pages = {2104},
    author = {Brian de Silva and Kathleen Champion and Markus Quade and Jean-Christophe Loiseau and J. Kutz and Steven Brunton},
    title = {PySINDy: A Python package for the sparse identification of nonlinear dynamical systems from data},
    journal = {Journal of Open Source Software}
    }

Bibtex:

.. code-block:: text

    @article{Kaptanoglu2022,
    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}
    }


References
----------------------
-  de Silva, Brian M., Kathleen Champion, Markus Quade,
   Jean-Christophe Loiseau, J. Nathan Kutz, and Steven L. Brunton.
   *PySINDy: a Python package for the sparse identification of
   nonlinear dynamics from data.* arXiv preprint arXiv:2004.08424 (2020)
   `[arXiv] `__

-  Kaptanoglu, Alan A., Brian M. de Silva, Urban Fasel, Kadierdan Kaheman, Andy J. Goldschmidt
   Jared L. Callaham, Charles B. Delahunt, Zachary G. Nicolaou, Kathleen Champion,
   Jean-Christophe Loiseau, J. Nathan Kutz, and Steven L. Brunton.
   *PySINDy: A comprehensive Python package for robust sparse system identification.*
   arXiv preprint arXiv:2111.08481 (2021).
   `[arXiv] `__

-  Brunton, Steven L., Joshua L. Proctor, and J. Nathan Kutz.
   *Discovering governing equations from data by sparse identification
   of nonlinear dynamical systems.* Proceedings of the National
   Academy of Sciences 113.15 (2016): 3932-3937.
   `[DOI] `__

-  Champion, K., Zheng, P., Aravkin, A. Y., Brunton, S. L., & Kutz, J. N. (2020).
   *A unified sparse optimization framework to learn parsimonious physics-informed
   models from data.* IEEE Access, 8, 169259-169271.
   `[DOI] `__

-  Brunton, Steven L., Joshua L. Proctor, and J. Nathan Kutz.
   *Sparse identification of nonlinear dynamics with control (SINDYc).*
   IFAC-PapersOnLine 49.18 (2016): 710-715.
   `[DOI] `__

-  Kaheman, K., Kutz, J. N., & Brunton, S. L. (2020).
   *SINDy-PI: a robust algorithm for parallel implicit sparse identification
   of nonlinear dynamics.* Proceedings of the Royal Society A, 476(2242), 20200279.
   `[DOI] `__

-  Kaptanoglu, A. A., Callaham, J. L., Aravkin, A., Hansen, C. J., & Brunton, S. L. (2021).
   *Promoting global stability in data-driven models of quadratic nonlinear dynamics.*
   Physical Review Fluids, 6(9), 094401.
   `[DOI] `__


Related packages
----------------
* `Deeptime `_ - A Python library for the analysis of time series data with methods for dimension reduction, clustering, and Markov model estimation.
* `PyDMD `_ - A Python package using the Dynamic Mode Decomposition (DMD) for a data-driven model simplification based on spatiotemporal coherent structures. DMD is a great alternative to SINDy.
* `PySINDyGUI `_ - A slick-looking GUI for PySINDy.
* `SEED `_ - Software for the Extraction of Equations from Data: a GUI for many of the methods provided by PySINDy.
* `SymINDy `_ - A Python package combining SINDy with genetic programming-based symbolic regression, used for the functions library optimization.

Contributors
------------
This repository is a fork from `original work `_ by `Markus Quade `_.

Thanks to the members of the community who have contributed to PySINDy!

+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| `billtubbs `_            | Bug fix `#68 `_                                                                                          |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| `kopytjuk `_             | Concatenation feature for libraries `#72 `_                                                                |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| `andgoldschmidt `_ | `derivative `_ package for numerical differentiation `#85 `_ |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+

.. |BuildCI| image:: https://github.com/dynamicslab/pysindy/actions/workflows/main.yml/badge.svg
    :target: https://github.com/dynamicslab/pysindy/actions/workflows/main.yml?query=branch%3Amaster

.. |RTD| image:: https://readthedocs.org/projects/pysindy/badge/?version=latest
    :target: https://pysindy.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. |PyPI| image:: https://badge.fury.io/py/pysindy.svg
    :target: https://badge.fury.io/py/pysindy

.. |Codecov| image:: https://codecov.io/gh/dynamicslab/pysindy/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/dynamicslab/pysindy

.. |JOSS1| image:: https://joss.theoj.org/papers/82d080bbe10ac3ab4bc03fa75f07d644/status.svg
    :target: https://joss.theoj.org/papers/82d080bbe10ac3ab4bc03fa75f07d644

.. |JOSS2| image:: https://joss.theoj.org/papers/10.21105/joss.03994/status.svg
    :target: https://doi.org/10.21105/joss.03994

.. |DOI| image:: https://zenodo.org/badge/186055899.svg
   :target: https://zenodo.org/badge/latestdoi/186055899

Owner

  • Name: dynamicslab
  • Login: dynamicslab
  • Kind: organization

JOSS Publication

PySINDy: A Python package for the sparse identification of nonlinear dynamical systems from data
Published
May 18, 2020
Volume 5, Issue 49, Page 2104
Authors
Brian M. de Silva
Department of Applied Mathematics, University of Washington
Kathleen Champion
Department of Applied Mathematics, University of Washington
Markus Quade
Ambrosys GmbH
Jean-Christophe Loiseau
École Nationale Supérieure des Arts et Métiers
J. Nathan Kutz
Department of Applied Mathematics, University of Washington
Steven L. Brunton
Department of Mechanical Engineering, University of Washington, Department of Applied Mathematics, University of Washington
Editor
Yuan Tang ORCID
Tags
dynamical systems sparse regression model discovery system identification machine learning

GitHub Events

Total
  • Create event: 22
  • Release event: 3
  • Issues event: 43
  • Watch event: 192
  • Delete event: 20
  • Issue comment event: 76
  • Push event: 79
  • Pull request review event: 10
  • Pull request review comment event: 7
  • Pull request event: 35
  • Fork event: 38
Last Year
  • Create event: 22
  • Release event: 3
  • Issues event: 43
  • Watch event: 193
  • Delete event: 20
  • Issue comment event: 76
  • Push event: 81
  • Pull request review event: 10
  • Pull request review comment event: 7
  • Pull request event: 35
  • Fork event: 38

Committers

Last synced: 8 months ago

All Time
  • Total Commits: 1,771
  • Total Committers: 35
  • Avg Commits per committer: 50.6
  • Development Distribution Score (DDS): 0.757
Past Year
  • Commits: 134
  • Committers: 5
  • Avg Commits per committer: 26.8
  • Development Distribution Score (DDS): 0.142
Top Committers
Name Email Commits
Jake Stevens-Haas 3****s 431
briandesilva b****a@u****u 368
mq m****e@u****e 211
akaptano a****o@a****t 147
Zachary Nicolaou z****u@g****m 125
kpchamp k****p@u****u 102
Alan Kaptanoglu a****u@A****l 87
Alan Kaptanoglu 3****o 70
Mikkel Lykkegaard m****l@d****k 59
Alan Kaptanoglu a****u@A****l 41
OliviaZ0826 o****6@o****m 29
Mai Peng m****5@h****m 22
Ludger Paehler l****r@t****e 13
Yash Bhangale y****9@u****u 10
Jared Callaham j****m@g****m 10
wesg w****e@g****m 6
Watcharin Kriengwatana 3****n 6
kopytjuk k****k@g****m 6
Mai Peng p****g@M****l 4
TarenGorman t****n@g****m 4
Alan Kaptanoglu a****u@A****x 2
Mai Peng p****g@M****l 2
Alan Kaptanoglu a****u@g****u 2
Thomas Isele t****e@p****e 2
billtubbs b****s@m****m 2
Matteo Manzi 3****9 1
user01 u****1@I****l 1
Alan Kaptanoglu a****u@v****u 1
Alan Kaptanoglu a****u@a****m 1
Alan Kaptanoglu a****u@A****l 1
and 5 more...

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 256
  • Total pull requests: 145
  • Average time to close issues: about 2 months
  • Average time to close pull requests: 22 days
  • Total issue authors: 142
  • Total pull request authors: 19
  • Average comments per issue: 2.83
  • Average comments per pull request: 2.38
  • Merged pull requests: 116
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 43
  • Pull requests: 46
  • Average time to close issues: 16 days
  • Average time to close pull requests: 10 days
  • Issue authors: 32
  • Pull request authors: 8
  • Average comments per issue: 1.0
  • Average comments per pull request: 1.24
  • Merged pull requests: 30
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • Jacob-Stevens-Haas (49)
  • penguinaugustus (8)
  • anur2203 (8)
  • ziyinyuan (6)
  • scatr (5)
  • isshiki416 (4)
  • ccrnn (4)
  • akaptano (4)
  • ramdhan1989 (3)
  • BK201-kkk (3)
  • SM-CAU (3)
  • znicolaou (3)
  • joardima (3)
  • TristanBoen (3)
  • azanparmar (3)
Pull Request Authors
  • Jacob-Stevens-Haas (97)
  • himkwtn (13)
  • yb6599 (8)
  • akaptano (3)
  • znicolaou (3)
  • YaadR (2)
  • ZachMcBreartyUU (2)
  • nehalsinghmangat (2)
  • s-kat0 (2)
  • ChengYuHan0406 (2)
  • mikkelbue (2)
  • heidariarash (2)
  • wesg52 (1)
  • matteoettam09 (1)
  • ludgerpaehler (1)
Top Labels
Issue Labels
enhancement (15) good first issue (10) bug (7) priority:low (4) question (1) Trapping (1) constraints (1) wontfix (1)
Pull Request Labels
enhancement (4)

Packages

  • Total packages: 2
  • Total downloads:
    • pypi 26,090 last-month
  • Total dependent packages: 6
    (may contain duplicates)
  • Total dependent repositories: 19
    (may contain duplicates)
  • Total versions: 47
  • Total maintainers: 3
pypi.org: pysindy

Sparse Identification of Nonlinear Dynamics

  • Versions: 37
  • Dependent Packages: 6
  • Dependent Repositories: 18
  • Downloads: 26,090 Last month
Rankings
Stargazers count: 1.9%
Dependent packages count: 2.4%
Downloads: 2.7%
Average: 2.7%
Forks count: 3.2%
Dependent repos count: 3.4%
Maintainers (3)
Last synced: 4 months ago
conda-forge.org: pysindy
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Forks count: 11.9%
Stargazers count: 13.4%
Dependent repos count: 24.4%
Average: 25.3%
Dependent packages count: 51.6%
Last synced: 4 months ago

Dependencies

.github/workflows/draft-pdf.yml actions
  • actions/checkout v2 composite
  • actions/upload-artifact v1 composite
  • openjournals/openjournals-draft-action master composite
.github/workflows/main.yml actions
  • actions/cache v1 composite
  • actions/checkout v1 composite
  • actions/setup-python v1 composite
  • codecov/codecov-action v1 composite
.github/workflows/release.yml actions
  • actions/checkout v1 composite
  • actions/setup-python v1 composite
  • pypa/gh-action-pypi-publish master composite