MCPcopy Index your code
hub / github.com/pydata/xarray / set_xlabels

Method set_xlabels

xarray/plot/facetgrid.py:905–907  ·  view source on GitHub ↗

Label the x axis on the bottom row of the grid.

(self, label: str | None = None, **kwargs: Any)

Source from the content-addressed store, hash-verified

903 getattr(ax, f"set_{axis}label")(label, **kwargs)
904
905 def set_xlabels(self, label: str | None = None, **kwargs: Any) -> None:
906 """Label the x axis on the bottom row of the grid."""
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."""

Callers

nothing calls this directly

Calls 1

_set_labelsMethod · 0.95

Tested by

no test coverage detected