In [ ]:
%matplotlib inline

Generating a legend

An example of how to use the legend kwarg to generate a legend.


In [ ]:
# Code source: Andrew Heusser
# License: MIT

# import
import hypertools as hyp

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

# plot
geo.plot(fmt='.', legend=['Group A', 'Group B', 'Group C'])