Coder Social home page Coder Social logo

nolds's Introduction

NOnLinear measures for Dynamical Systems (nolds)

image

Nolds is a small numpy-based library that provides an implementation and a learning resource for nonlinear measures for dynamical systems based on one-dimensional time series. Currently the following measures are implemented:

sample entropy (sampen)

Measures the complexity of a time-series, based on approximate entropy

correlation dimension (corr_dim)

A measure of the fractal dimension of a time series which is also related to complexity.

Lyapunov exponent (lyap_r, lyap_e)

Positive Lyapunov exponents indicate chaos and unpredictability. Nolds provides the algorithm of Rosenstein et al. (lyap_r) to estimate the largest Lyapunov exponent and the algorithm of Eckmann et al. (lyap_e) to estimate the whole spectrum of Lyapunov exponents.

Hurst exponent (hurst_rs)

The hurst exponent is a measure of the "long-term memory" of a time series. It can be used to determine whether the time series is more, less, or equally likely to increase if it has increased in previous steps. This property makes the Hurst exponent especially interesting for the analysis of stock data.

detrended fluctuation analysis (DFA) (dfa)

DFA measures the Hurst parameter H, which is very similar to the Hurst exponent. The main difference is that DFA can be used for non-stationary processes (whose mean and/or variance change over time).

Example

import nolds
import numpy as np

rwalk = np.cumsum(np.random.random(1000))
h = nolds.dfa(rwalk)

Requirements

Nolds supports Python 2 (>= 2.7) and 3 (>= 3.4) from one code source. It requires the package numpy.

These are the only hard requirements, but some functions will need other packages:

  • If you want to use the RANSAC algorithm for line fitting, you will also need the package sklearn.
  • For the true random numbers generated by nolds.qrandom you need the package quantumrandom.
  • The plotting functions in nolds.examples require the package matplotlib.

Installation

Nolds is available through PyPI and can be installed using pip:

pip install nolds

You can test your installation by running some sample code with:

python -m nolds.examples lyapunov-logistic

Alternatively, if you do not have matplotlib installed, you can run the unittests with:

python -m unittest nolds.test_measures

Documentation

Nolds is designed as a learning resource for the measures mentioned above. Therefore the corresponding functions feature extensive documentation that not only explains the interface but also the algorithm used and points the user to additional reference code and papers. The documentation can be found in the code, but it is also available as HTML-Version and on Read the Docs.

The relevant measures can be found in the file nolds/measures.py.

How to cite nolds

I am planning to publish nolds in a peer-reviewed journal, but as this is a side project of my PhD thesis this may take a while. For the time being you can use the following Zenodo reference:

Schölzel, Christopher. (2019, June 16). Nonlinear measures for dynamical systems (Version 0.5.2). Zenodo. http://doi.org/10.5281/zenodo.3814723

You can also export a BibTeX reference from Zenodo.

Contact information

If you have any questions, suggestions or corrections, you can find my contact information in my GitHub profile or on my blog.

Please note that this is one of my side projects. Depending on my current workload it may take days, weeks or even months until I can find the time to check on mails and issues for nolds.

nolds's People

Contributors

cschoel avatar dominiquemakowski avatar nickross avatar fkemeth avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.