matplotlib.pyplot.
figlegend
(*args, **kwargs)¶Place a legend in the figure.
Line2D
or
Patch
instancesA matplotlib.legend.Legend
instance is returned.
Examples
To make a legend from existing artists on every axes:
figlegend()
To make a legend for a list of lines and labels:
figlegend( (line1, line2, line3),
('label1', 'label2', 'label3'),
'upper right' )
See also