Method
_plot
( # 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): |
Tested by
no test coverage detected