Function
step
(
x: ArrayLike,
y: ArrayLike,
*args,
where: Literal["pre", "post", "mid"] = "pre",
data: DataParamType = None,
**kwargs,
)
Source from the content-addressed store, hash-verified
| 4274 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 4275 | @_copy_docstring_and_deprecators(Axes.step) |
| 4276 | def step( |
| 4277 | x: ArrayLike, |
| 4278 | y: ArrayLike, |
| 4279 | *args, |
| 4280 | where: Literal["pre", "post", "mid"] = "pre", |
| 4281 | data: DataParamType = None, |
| 4282 | **kwargs, |
| 4283 | ) -> list[Line2D]: |
| 4284 | return gca().step( |
| 4285 | x, |
| 4286 | y, |
| 4287 | *args, |
| 4288 | where=where, |
| 4289 | **({"data": data} if data is not None else {}), |
| 4290 | **kwargs, |
| 4291 | ) |
| 4292 | |
| 4293 | |
| 4294 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…