Note
Go to the end to download the full example code.
Saving a plot¶
run this example as a notebook — or grab the .ipynb (also linked at the bottom of the page)
To save a plot, simply use the save_path kwarg, and specify where you want the image to be saved, including the file extension (e.g. pdf)

/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_save_image_thumb.png'
# Code source: Andrew Heusser
# License: MIT
# import
import hypertools as hyp
# load example data
data = hyp.load('weights_sample')
# plot
import os, tempfile
save_path = os.path.join(tempfile.mkdtemp(), 'test-image.pdf')
hyp.plot(data, fmt='o', save_path=save_path)
Total running time of the script: (0 minutes 0.390 seconds)