Test line plot with intervals explicitly on x axis.
(self)
| 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.""" |
| 720 | bins = [-1, 0, 1, 2] |
| 721 | self.darray.groupby_bins("dim_0", bins).mean(...).plot(x="dim_0_bins") # type: ignore[call-arg] |
| 722 | |
| 723 | def test_coord_with_interval_y(self) -> None: |
| 724 | """Test line plot with intervals explicitly on y axis.""" |
nothing calls this directly
no test coverage detected