(
ylabel: str,
fontdict: dict[str, Any] | None = None,
labelpad: float | None = None,
*,
loc: Literal["bottom", "center", "top"] | None = None,
**kwargs,
)
| 4598 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 4599 | @_copy_docstring_and_deprecators(Axes.set_ylabel) |
| 4600 | def ylabel( |
| 4601 | ylabel: str, |
| 4602 | fontdict: dict[str, Any] | None = None, |
| 4603 | labelpad: float | None = None, |
| 4604 | *, |
| 4605 | loc: Literal["bottom", "center", "top"] | None = None, |
| 4606 | **kwargs, |
| 4607 | ) -> Text: |
| 4608 | return gca().set_ylabel( |
| 4609 | ylabel, fontdict=fontdict, labelpad=labelpad, loc=loc, **kwargs |
| 4610 | ) |
| 4611 | |
| 4612 | |
| 4613 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
nothing calls this directly
no test coverage detected
searching dependent graphs…