Create a stem plot.
A stem plot draws lines perpendicular to a baseline at each location locs from the baseline to heads, and places a marker there. For vertical stem plots (the default), the locs are x positions, and the heads are y values. For horizontal stem plots, the locs are y positions, and the heads are x values.
Call signature:
stem([locs,] heads, linefmt=None, markerfmt=None, basefmt=None)
The locs-positions are optional. The formats may be provided either as positional or as keyword-arguments.
For vertical stem plots, the x-positions of the stems. For horizontal stem plots, the y-positions of the stems.
For vertical stem plots, the y-values of the stem heads. For horizontal stem plots, the x-values of the stem heads.
A string defining the color and/or linestyle of the vertical lines:
Character | Line Style |
---|---|
| solid line |
| dashed line |
| dash-dot line |
| dotted line |
Default: 'C0-', i.e. solid line with the first color of the color cycle.
Note: Markers specified through this parameter (e.g. 'x') will be silently ignored (unless using use_line_collection=False
). Instead, markers should be specified using markerfmt.
A string defining the color and/or shape of the markers at the stem heads. Default: 'C0o', i.e. filled circles with the first color of the color cycle.
A format string defining the properties of the baseline.
If 'vertical', will produce a plot with stems oriented vertically, otherwise the stems will be oriented horizontally.
The y/x-position of the baseline (depending on orientation).
The label to use for the stems in legends.
If True
, store and plot the stem lines as a LineCollection
instead of individual lines, which significantly increases performance. If False
, defaults to the old behavior of using a list of Line2D
objects. This parameter may be deprecated in the future.
If given, all parameters also accept a string s
, which is interpreted as data[s]
(unless this raises an exception).
StemContainer
The container may be treated like a tuple (markerline, stemlines, baseline)
See also
The MATLAB function stem which inspired this method.
matplotlib.axes.Axes.stem
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/_as_gen/matplotlib.axes.Axes.stem.html