Axes.legend¶
- Axes.legend(handles=None, labels=None, *, loc=None, location=None, queue=False, **kwargs)[source]¶
Add an inset legend or outer legend along the edge of the axes.
- Parameters
handles (
list
ofArtist
, optional) – List of matplotlib artists, or a list of lists of artist instances (see thecenter
keyword). IfNone
, the artists are retrieved withget_legend_handles_labels
.labels (
list
ofstr
, optional) – Matching list of string labels orNone
placeholders, or a matching list of lists (see thecenter
keyword). WhereverNone
appears in the list (or if no labels were passed at all), labels are retrieved by callingget_label
on eachArtist
in the handle list. If a handle consists of a tuple group of artists, labels are inferred from the artists in the tuple. If there are multiple unique labels in the tuple group of artists, the tuple group is expanded into unique legend entries. For details on matplotlib legend handlers, see the matplotlib legend guide.loc, location (
int
orstr
, optional) – The legend location. Default isrc['legend.loc']
='best'
. Valid location keys are shown in the below table.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
orstr
, optional) – For outer legends only. The space allocated for the legend box. This does nothing if the tight layout algorithm is active for the figure. If float, units are inches. If string, interpreted byunits
.space (
float
orstr
, optional) – For outer legends only. The fixed space between the legend and the main axes. If float, units are em-widths. If string, interpreted byunits
. When the tight layout algorithm is active for the figure, this is adjusted automatically usingpad
. Otherwise, a suitable default is selected.pad (
float
orstr
, optional) – The padding between the axes edge and the legend. For outer legends, this is the tight layout padding. Default isrc['subplots.panelpad']
=0.5
. For inset legends, this is the fixed space between the axes edge and the legend. Default isrc['legend.borderaxespad']
=0
. If float, units are em-widths. If string, interpreted byunits
.queue (
bool
, optional) – IfTrue
andloc
is the same as an existing legend, the input arguments are added to a queue and this function returnsNone
. This is used to “update” the same legend with successiveax.legend(...)
calls. IfFalse
(the default) andloc
is the same as an existing inset legend, the old legend is removed. IfFalse
andloc
is an outer legend, the legends are stacked.
- Other Parameters
frame, frameon (
bool
, optional) – Toggles the legend frame. For centered-row legends, a frame independent from matplotlib’s built-in legend frame is created.ncol, ncols (
int
, optional) – The number of columns.ncols
is an alias, added for consistency withsubplots
.order (
{'C', 'F'}
, optional) – Whether legend handles are drawn in row-major ('C'
) or column-major ('F'
) order. Analagous tonumpy.array
ordering. Default is'F'
.center (
bool
, optional) – Whether to center each legend row individually. IfTrue
, we draw successive single-row legends stacked on top of each other. IfNone
, we infer this setting fromhandles
. By default,center
is set toTrue
ifhandles
is a list of lists (each sublist is used as a row in the legend).alphabetize (
bool
, optional) – Whether to alphabetize the legend entries according to the legend labels. Default isFalse
.title, label (
str
, optional) – The legend title. Thelabel
keyword is also accepted, for consistency withcolorbar
.fontsize, fontweight, fontcolor (optional) – The font size, weight, and color for the legend text. Font size is interpreted by
units
. The default font size isrc['legend.fontsize']
.titlefontsize, titlefontweight, titlefontcolor (optional) – The font size, weight, and color for the legend title. Font size is interpreted by
units
. The default size isfontsize
.a, alpha, framealpha, fc, facecolor, framecolor, ec, edgecolor, ew, edgewidth (optional) – The opacity, face color, edge color, and edge width for the legend frame. Defaults are
rc['legend.framealpha']
=0.8
,rc['legend.facecolor']
='white'
,rc['legend.edgecolor']
='black'
andrc['axes.linewidth']
=0.6
.color, lw, linewidth, m, marker, ls, linestyle, dashes, ms, markersize (
property-spec
, optional) – Properties used to override the legend handles. For example, for a legend describing variations in line style ignoring variations in color, you might want to usecolor='k'
.borderpad, borderaxespad, handlelength, handleheight, handletextpad, labelspacing, columnspacing (
float
orstr
, optional) – Nativelegend
spacing arguments interpreted withunits
. The default units are still font size-relative.**kwargs – Passed to
legend
.