Axes.
step
(x, y, *args, where='pre', data=None, **kwargs)[source]¶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.
Parameters: |
|
---|---|
Returns: |
|
Other Parameters: |
|
Notes
Note
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
Objects passed as data must support item access (data[<arg>]
) and
membership test (<arg> in data
).