MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / stem

Function stem

lib/matplotlib/pyplot.py:4252–4271  ·  view source on GitHub ↗
(
    *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)
4252def 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

Calls 2

gcaFunction · 0.85
stemMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…