(
left: float | None = None,
bottom: float | None = None,
right: float | None = None,
top: float | None = None,
wspace: float | None = None,
hspace: float | None = None,
)
| 2962 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 2963 | @_copy_docstring_and_deprecators(Figure.subplots_adjust) |
| 2964 | def subplots_adjust( |
| 2965 | left: float | None = None, |
| 2966 | bottom: float | None = None, |
| 2967 | right: float | None = None, |
| 2968 | top: float | None = None, |
| 2969 | wspace: float | None = None, |
| 2970 | hspace: float | None = None, |
| 2971 | ) -> None: |
| 2972 | gcf().subplots_adjust( |
| 2973 | left=left, bottom=bottom, right=right, top=top, wspace=wspace, hspace=hspace |
| 2974 | ) |
| 2975 | |
| 2976 | |
| 2977 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
nothing calls this directly
no test coverage detected
searching dependent graphs…