Test line plot with intervals.
(self)
| 711 | d.plot(x="x", y="y", col="columns", ax=plt.gca()) # type: ignore[call-arg] |
| 712 | |
| 713 | def test_coord_with_interval(self) -> None: |
| 714 | """Test line plot with intervals.""" |
| 715 | bins = [-1, 0, 1, 2] |
| 716 | self.darray.groupby_bins("dim_0", bins).mean(...).plot() # type: ignore[call-arg] |
| 717 | |
| 718 | def test_coord_with_interval_x(self) -> None: |
| 719 | """Test line plot with intervals explicitly on x axis.""" |
nothing calls this directly
no test coverage detected