Function
stem
(
*args: ArrayLike | str,
linefmt: str | None = None,
markerfmt: str | None = None,
basefmt: str | None = None,
bottom: float = 0,
label: str | None = None,
orientation: Literal["vertical", "horizontal"] = "vertical",
data: DataParamType = None,
)
Source from the content-addressed store, hash-verified
| 4250 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 4251 | @_copy_docstring_and_deprecators(Axes.stem) |
| 4252 | def stem( |
| 4253 | *args: ArrayLike | str, |
| 4254 | linefmt: str | None = None, |
| 4255 | markerfmt: str | None = None, |
| 4256 | basefmt: str | None = None, |
| 4257 | bottom: float = 0, |
| 4258 | label: str | None = None, |
| 4259 | orientation: Literal["vertical", "horizontal"] = "vertical", |
| 4260 | data: DataParamType = None, |
| 4261 | ) -> StemContainer: |
| 4262 | return gca().stem( |
| 4263 | *args, |
| 4264 | linefmt=linefmt, |
| 4265 | markerfmt=markerfmt, |
| 4266 | basefmt=basefmt, |
| 4267 | bottom=bottom, |
| 4268 | label=label, |
| 4269 | orientation=orientation, |
| 4270 | **({"data": data} if data is not None else {}), |
| 4271 | ) |
| 4272 | |
| 4273 | |
| 4274 | # 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…