(self)
| 949 | self.darray.plot.hist() # type: ignore[call-arg] |
| 950 | |
| 951 | def test_hist_coord_with_interval(self) -> None: |
| 952 | ( |
| 953 | self.darray.groupby_bins("dim_0", [-1, 0, 1, 2]) # type: ignore[call-arg] |
| 954 | .mean(...) |
| 955 | .plot.hist(range=(-1, 2)) |
| 956 | ) |
| 957 | |
| 958 | |
| 959 | @requires_matplotlib |
nothing calls this directly
no test coverage detected