Skip to content

SImple Python implemention of recurrence plot for a time series.

Notifications You must be signed in to change notification settings

laszukdawid/recurrence-plot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shortly

Tools for creating recurrence plot.

Instruction

See plot_recurrance.py for example on how to use it. Here is quick small suggestion:

import numpy as np
import pylab as plt
from plot_recurrance import rec_plot

sig = np.random.uniform(size=100)
rec = rec_plot(sig)
plt.imshow(rec)
plt.show()

Few inspirational plots below.

Blog post with description:

Small blog post on using visualising Intrinsic Mode Frequency (IMFs), i.e. output of Empirical Mode Decomposition, can be found here: EMD on Audio wav and reccurance plots

Cool-looking plots

rec1 rec2

About

SImple Python implemention of recurrence plot for a time series.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages