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

Function plot

lib/matplotlib/pyplot.py:4036–4049  ·  view source on GitHub ↗
(
    *args: float | ArrayLike | str,
    scalex: bool = True,
    scaley: bool = True,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

4034# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
4035@_copy_docstring_and_deprecators(Axes.plot)
4036def plot(
4037 *args: float | ArrayLike | str,
4038 scalex: bool = True,
4039 scaley: bool = True,
4040 data: DataParamType = None,
4041 **kwargs,
4042) -> list[Line2D]:
4043 return gca().plot(
4044 *args,
4045 scalex=scalex,
4046 scaley=scaley,
4047 **({"data": data} if data is not None else {}),
4048 **kwargs,
4049 )
4050
4051
4052# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
plotMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…