Make a step plot.
Call signatures:
step(x, y, [fmt], *, data=None, where='pre', **kwargs) step(x, y, [fmt], x2, y2, [fmt2], ..., *, where='pre', **kwargs)
This is just a thin wrapper around plot
which changes some formatting options. Most of the concepts and parameters of plot can be used here as well.
Note
This method uses a standard plot with a step drawstyle: The x values are the reference positions and steps extend left/right/both directions depending on where.
For the common case where you know the values and edges of the steps, use stairs
instead.
1D sequence of x positions. It is assumed, but not checked, that it is uniformly increasing.
1D sequence of y levels.
A format string, e.g. 'g' for a green line. See plot
for a more detailed description.
Note: While full format strings are accepted, it is recommended to only specify the color. Line styles are currently ignored (use the keyword argument linestyle instead). Markers are accepted and plotted on the given positions, however, this is a rarely needed feature for step plots.
Define where the steps should be placed:
(x[i-1], x[i]]
has the value y[i]
.[x[i], x[i+1])
has the value y[i]
.An object with labelled data. If given, provide the label names to plot in x and y.
Additional parameters are the same as those for plot
.
Line2D
Objects representing the plotted data.
matplotlib.axes.Axes.step
© 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.step.html