MCPcopy
hub / github.com/pandas-dev/pandas / _plot

Method _plot

pandas/plotting/_matplotlib/core.py:1915–1925  ·  view source on GitHub ↗
(  # type: ignore[override]
        cls,
        ax: Axes,
        x,
        y: np.ndarray,
        w,
        start: int | npt.NDArray[np.intp] = 0,
        log: bool = False,
        **kwds,
    )

Source from the content-addressed store, hash-verified

1913 @classmethod
1914 @register_pandas_matplotlib_converters
1915 def _plot( # type: ignore[override]
1916 cls,
1917 ax: Axes,
1918 x,
1919 y: np.ndarray,
1920 w,
1921 start: int | npt.NDArray[np.intp] = 0,
1922 log: bool = False,
1923 **kwds,
1924 ):
1925 return ax.bar(x, y, w, bottom=start, log=log, **kwds)
1926
1927 @property
1928 def _start_base(self):

Callers 1

_make_plotMethod · 0.95

Calls 1

barMethod · 0.45

Tested by

no test coverage detected