pymerlin.plot.timeseries_video
- pymerlin.plot.timeseries_video(img_ts, interval=100, title='')[source]
Show a time series as a video in a Jupyter Notebook
To view animation in notebook run
`python from IPython.display import HTML video = timeseries_video(TS) HTML(video) `- Parameters
img_ts (array) – Time series sliced to desired view [nx,ny,nt]
interval (int, optional) – Framerate. Defaults to 100.
title (str, optional) – Title. Defaults to ‘’.
- Returns
HTML video object
- Return type
video