A basic exampleΒΆ

Here is a basic example where we load in some data (a list of arrays - samples by features), take the first two arrays in the list and plot them as points with the ‘o’. Hypertools can handle all format strings supported by matplotlib.

../_images/sphx_glr_plot_basic_001.png
# Code source: Andrew Heusser
# License: MIT

# import
import hypertools as hyp

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

# plot
hyp.plot(data, '.')

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

Generated by Sphinx-Gallery