Test line plot with intervals explicitly on y axis.
(self)
| 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.""" |
| 725 | bins = [-1, 0, 1, 2] |
| 726 | self.darray.groupby_bins("dim_0", bins).mean(...).plot(y="dim_0_bins") # type: ignore[call-arg] |
| 727 | |
| 728 | def test_coord_with_interval_xy(self) -> None: |
| 729 | """Test line plot with intervals on both x and y axes.""" |
nothing calls this directly
no test coverage detected