All Projects → laszukdawid → Pyemd

laszukdawid / Pyemd

Licence: other
Python implementation of Empirical Mode Decompoisition (EMD) method

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pyemd

pyRiemann
Python machine learning package based on sklearn API for multivariate data processing and statistical analysis of symmetric positive definite matrices via Riemannian geometry
Stars: ✭ 470 (+14.91%)
Mutual labels:  time-series, signal-processing
wv
⏰ This R package provides the tools to perform standard and robust wavelet variance analysis for time series (signal processing). Among others, aside from computing the wavelet variance and cross-covariance (classic and robust), the package provides inference tools (e.g. confidence intervals) and plotting tools allowing to perform some visual an…
Stars: ✭ 14 (-96.58%)
Mutual labels:  time-series, signal-processing
Time Series Prediction
A collection of time series prediction methods: rnn, seq2seq, cnn, wavenet, transformer, unet, n-beats, gan, kalman-filter
Stars: ✭ 351 (-14.18%)
Mutual labels:  time-series, signal-processing
msda
Library for multi-dimensional, multi-sensor, uni/multivariate time series data analysis, unsupervised feature selection, unsupervised deep anomaly detection, and prototype of explainable AI for anomaly detector
Stars: ✭ 80 (-80.44%)
Mutual labels:  time-series, signal-processing
Timetk
A toolkit for working with time series in R
Stars: ✭ 371 (-9.29%)
Mutual labels:  time-series
Spreads
Series and Panels for Real-time and Exploratory Analysis of Data Streams
Stars: ✭ 353 (-13.69%)
Mutual labels:  time-series
Influxdb Ruby
Ruby client for InfluxDB
Stars: ✭ 352 (-13.94%)
Mutual labels:  time-series
Neuralcde
Code for "Neural Controlled Differential Equations for Irregular Time Series"
Stars: ✭ 341 (-16.63%)
Mutual labels:  time-series
Pyaudioanalysis
Python Audio Analysis Library: Feature Extraction, Classification, Segmentation and Applications
Stars: ✭ 4,487 (+997.07%)
Mutual labels:  signal-processing
George
Fast and flexible Gaussian Process regression in Python
Stars: ✭ 379 (-7.33%)
Mutual labels:  time-series
Tickgrinder
Low-latency algorithmic trading platform written in Rust
Stars: ✭ 365 (-10.76%)
Mutual labels:  time-series
Sdv
Synthetic Data Generation for tabular, relational and time series data.
Stars: ✭ 360 (-11.98%)
Mutual labels:  time-series
Flow Forecast
Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).
Stars: ✭ 368 (-10.02%)
Mutual labels:  time-series
Ceres
Distributable time-series database (not actively maintained)
Stars: ✭ 351 (-14.18%)
Mutual labels:  time-series
Sktime
A unified framework for machine learning with time series
Stars: ✭ 4,741 (+1059.17%)
Mutual labels:  time-series
Deltapy
DeltaPy - Tabular Data Augmentation (by @firmai)
Stars: ✭ 344 (-15.89%)
Mutual labels:  time-series
Sktime Dl
sktime companion package for deep learning based on TensorFlow
Stars: ✭ 379 (-7.33%)
Mutual labels:  time-series
Biosppy
Biosignal Processing in Python
Stars: ✭ 358 (-12.47%)
Mutual labels:  signal-processing
Timely
Accumulo backed time series database
Stars: ✭ 357 (-12.71%)
Mutual labels:  time-series
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-22.98%)
Mutual labels:  time-series

codecov BuildStatus DocStatus Codacy ko-fi

PyEMD

Links

Introduction

This is yet another Python implementation of Empirical Mode Decomposition (EMD). The package contains many EMD variations and intends to deliver more in time.

EMD variations:

  • Ensemble EMD (EEMD),
  • "Complete Ensemble EMD" (CEEMDAN)
  • different settings and configurations of vanilla EMD.
  • Image decomposition (EMD2D & BEMD) (experimental, no support)

PyEMD allows to use different splines for envelopes, stopping criteria and extrema interpolation.

Available splines:

  • Natural cubic [default]
  • Pointwise cubic
  • Akima
  • Linear

Available stopping criteria:

  • Cauchy convergence [default]
  • Fixed number of iterations
  • Number of consecutive proto-imfs

Extrema detection:

  • Discrete extrema [default]
  • Parabolic interpolation

Installation

Recommended

Simply download this directory either directly from GitHub, or using command line:

$ git clone https://github.com/laszukdawid/PyEMD

Then go into the downloaded project and run from command line:

$ python setup.py install

PyPi

Packaged obtained from PyPi is/will be slightly behind this project, so some features might not be the same. However, it seems to be the easiest/nicest way of installing any Python packages, so why not this one?

$ pip install EMD-signal

Example

More detailed examples are included in the documentation or in the PyEMD/examples.

EMD

In most cases default settings are enough. Simply import EMD and pass your signal to instance or to emd() method.

from PyEMD import EMD
import numpy as np

s = np.random.random(100)
emd = EMD()
IMFs = emd(s)

The Figure below was produced with input: $S(t) = cos(22 \pi t^2) + 6t^2$

simpleExample

EEMD

Simplest case of using Ensemble EMD (EEMD) is by importing EEMD and passing your signal to the instance or eemd() method.

Windows: Please don't skip the if __name__ == "__main__" section.

from PyEMD import EEMD
import numpy as np

if __name__ == "__main__":
    s = np.random.random(100)
    eemd = EEMD()
    eIMFs = eemd(s)

CEEMDAN

As with previous methods, there is also simple way to use CEEMDAN.

Windows: Please don't skip the if __name__ == "__main__" section.

from PyEMD import CEEMDAN
import numpy as np

if __name__ == "__main__":
    s = np.random.random(100)
    ceemdan = CEEMDAN()
    cIMFs = ceemdan(s)

Visualisation

The package contain a simple visualisation helper that can help, e.g., with time series and instantaneous frequencies.

import numpy as np
from PyEMD import EMD, Visualisation

t = np.arange(0, 3, 0.01)
S = np.sin(13*t + 0.2*t**1.4) - np.cos(3*t)

# Extract imfs and residue
# In case of EMD
emd = EMD()
emd.emd(S)
imfs, res = emd.get_imfs_and_residue()

# In general:
#components = EEMD()(S)
#imfs, res = components[:-1], components[-1]

vis = Visualisation()
vis.plot_imfs(imfs=imfs, residue=res, t=t, include_residue=True)
vis.plot_instant_freq(t, imfs=imfs)
vis.show()

EMD2D/BEMD

Unfortunately, this is Experimental and we can't guarantee that the output is meaningful. The simplest use is to pass image as monochromatic numpy 2D array. Sample as with the other modules one can use the default setting of an instance or, more explicitly, use the emd2d() method.

from PyEMD.EMD2d import EMD2D  #, BEMD
import numpy as np

x, y = np.arange(128), np.arange(128).reshape((-1,1))
img = np.sin(0.1*x)*np.cos(0.2*y)
emd2d = EMD2D()  # BEMD() also works
IMFs_2D = emd2d(img)

F.A.Q

Why is EEMD/CEEMDAN so slow?

Unfortunately, that's their nature. They execute EMD multiple times every time with slightly modified version. Added noise can cause a creation of many extrema which will decrease performance of the natural cubic spline. For some tweaks on how to deal with that please see Speedup tricks in the documentation.

Contact

Feel free to contact me with any questions, requests or simply to say hi. It's always nice to know that I've helped someone or made their work easier. Contributing to the project is also acceptable and warmly welcomed.

Contact me either through gmail (laszukdawid @ gmail) or search me through your favourite web search.

Citation

If you found this package useful and would like to cite it in your work please use the following structure:

@misc{pyemd,
  author = {Laszuk, Dawid},
  title = {Python implementation of Empirical Mode Decomposition algorithm},
  year = {2017},
  publisher = {GitHub},
  journal = {GitHub Repository},
  howpublished = {\url{https://github.com/laszukdawid/PyEMD}},
}
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].