Precognition

Open in Colab  run this example as a notebook — or grab the .ipynb (also linked at the bottom of the page)

The future trajectory of an animated plot can be visualized with the precog argument. This displays a low opacity version of the trace ahead of the current points being plotted. This can be used in conjunction with the chemtrails argument to plot a low-opacity trace of the entire timeseries.

/home/docs/checkouts/readthedocs.org/user_builds/hypertools/checkouts/latest/hypertools/plot/backend.py:1353: UserWarning: Failed to switch to any interactive backend (TkAgg, QtAgg, Qt5Agg, Qt4Agg, GTK4Agg, GTK3Agg, WXAgg). Falling back to 'Agg'.
  warnings.warn(BACKEND_WARNING)

# sphinx_gallery_thumbnail_path = '_static/thumbnails/sphx_glr_precog_thumb.gif'

# Code source: Andrew Heusser
# License: MIT

# import
import hypertools as hyp

# load example data
data = hyp.load('weights_avg')

# plot
fig, ani = hyp.plot(data, animate=True, precog=True)

Total running time of the script: (0 minutes 28.985 seconds)

Gallery generated by Sphinx-Gallery