Label the y axis on the left column of the grid.
(self, label: str | None = None, **kwargs: Any)
| 907 | self._set_labels("x", self._bottom_axes, label, **kwargs) |
| 908 | |
| 909 | def set_ylabels(self, label: str | None = None, **kwargs: Any) -> None: |
| 910 | """Label the y axis on the left column of the grid.""" |
| 911 | self._set_labels("y", self._left_axes, label, **kwargs) |
| 912 | |
| 913 | def set_zlabels(self, label: str | None = None, **kwargs: Any) -> None: |
| 914 | """Label the z axis.""" |
nothing calls this directly
no test coverage detected