Note
Go to the end to download the full example code
Plot pointcare#
# Author: Nicolas Legrand <nicolas.legrand@cfin.au.dk>
# Licence: GPL v3
Visualizing poincare plot from RR time series using Matplotlib as plotting backend#
<Axes: title={'center': 'Poincare plot'}, xlabel='RR (n)', ylabel='RR (n+1)'>
Using Bokeh as plotting backend#
from bokeh.io import output_notebook
from bokeh.plotting import show
output_notebook()
from systole import import_rr
from systole.plots import plot_poincare
show(
plot_poincare(rr, input_type="rr_ms", backend="bokeh")
)
Total running time of the script: (0 minutes 1.760 seconds)