Axes.legend¶
- Axes.legend(*args, loc=None, width=None, space=None, **kwargs)[source]¶
Add an inset legend or outer legend along the edge of the axes. See
legend_wrapper
for details.- Parameters
loc (int or str, optional) – The legend location. The following location keys are valid:
Location
Valid keys
outer left
'left'
,'l'
outer right
'right'
,'r'
outer bottom
'bottom'
,'b'
outer top
'top'
,'t'
“best” inset
'best'
,'inset'
,'i'
,0
upper right inset
'upper right'
,'ur'
,1
upper left inset
'upper left'
,'ul'
,2
lower left inset
'lower left'
,'ll'
,3
lower right inset
'lower right'
,'lr'
,4
center left inset
'center left'
,'cl'
,5
center right inset
'center right'
,'cr'
,6
lower center inset
'lower center'
,'lc'
,7
upper center inset
'upper center'
,'uc'
,8
center inset
'center'
,'c'
,9
“filled”
'fill'
width (float or str, optional) – For outer legends only. The space allocated for the legend box. This does nothing if
rc.tight
isTrue
. Units are interpreted byunits
.space (float or str, optional) – For outer legends only. The space between the axes and the legend box. Units are interpreted by
units
. Whenrc.tight
isTrue
, this is adjusted automatically. Otherwise, the default isrc[‘subplots.panelpad’]
='0.5em'
.
- Other Parameters
*args, **kwargs – Passed to
legend_wrapper
.