(self)
| 2054 | self.plotmethod(x="x2d", y="y2d") |
| 2055 | |
| 2056 | def test_plot_rgb_image(self) -> None: |
| 2057 | DataArray( |
| 2058 | easy_array((10, 15, 3), start=0), dims=["y", "x", "band"] |
| 2059 | ).plot.imshow() |
| 2060 | assert 0 == len(find_possible_colorbars()) |
| 2061 | |
| 2062 | def test_plot_rgb_image_explicit(self) -> None: |
| 2063 | DataArray( |
nothing calls this directly
no test coverage detected