(self)
| 1660 | |
| 1661 | @pytest.mark.filterwarnings("ignore:tight_layout cannot") |
| 1662 | def test_convenient_facetgrid_4d(self) -> None: |
| 1663 | a = easy_array((10, 15, 2, 3)) |
| 1664 | d = DataArray(a, dims=["y", "x", "columns", "rows"]) |
| 1665 | g = self.plotfunc(d, x="x", y="y", col="columns", row="rows") |
| 1666 | |
| 1667 | assert_array_equal(g.axs.shape, [3, 2]) |
| 1668 | for ax in g.axs.flat: |
| 1669 | assert ax.has_data() |
| 1670 | |
| 1671 | @pytest.mark.parametrize( |
| 1672 | ["n", "figsize", "aspect", "expected_shape"], |
nothing calls this directly
no test coverage detected