(self)
| 2907 | self.ds.plot.scatter(x="A", y="B", row="row", ax=plt.axes()) |
| 2908 | |
| 2909 | def test_figsize_and_size(self) -> None: |
| 2910 | with pytest.raises(ValueError): |
| 2911 | self.ds.plot.scatter(x="A", y="B", row="row", size=3, figsize=(4, 3)) |
| 2912 | |
| 2913 | @pytest.mark.parametrize( |
| 2914 | "x, y, hue, add_legend, add_colorbar, error_type", |