Test line plot with intervals on both x and y axes.
(self)
| 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.""" |
| 730 | bins = [-1, 0, 1, 2] |
| 731 | self.darray.groupby_bins("dim_0", bins).mean(...).dim_0_bins.plot() |
| 732 | |
| 733 | @pytest.mark.parametrize("dim", ("x", "y")) |
| 734 | def test_labels_with_units_with_interval(self, dim) -> None: |
nothing calls this directly
no test coverage detected