A 2D Plot

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

A 2D plot can be created by setting ndims=2.

plot 2D
/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)

# Code source: Andrew Heusser
# License: MIT

# import
import hypertools as hyp

# load data
data = hyp.load('weights_sample')

# plot
hyp.plot(data, fmt='.', ndims=2)

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

Gallery generated by Sphinx-Gallery