(
mosaic: str,
*,
sharex: bool = ...,
sharey: bool = ...,
width_ratios: ArrayLike | None = ...,
height_ratios: ArrayLike | None = ...,
empty_sentinel: str = ...,
subplot_kw: dict[str, Any] | None = ...,
gridspec_kw: dict[str, Any] | None = ...,
per_subplot_kw: dict[str | tuple[str, ...], dict[str, Any]] | None = ...,
**fig_kw: Any
)
| 1893 | |
| 1894 | @overload |
| 1895 | def subplot_mosaic( |
| 1896 | mosaic: str, |
| 1897 | *, |
| 1898 | sharex: bool = ..., |
| 1899 | sharey: bool = ..., |
| 1900 | width_ratios: ArrayLike | None = ..., |
| 1901 | height_ratios: ArrayLike | None = ..., |
| 1902 | empty_sentinel: str = ..., |
| 1903 | subplot_kw: dict[str, Any] | None = ..., |
| 1904 | gridspec_kw: dict[str, Any] | None = ..., |
| 1905 | per_subplot_kw: dict[str | tuple[str, ...], dict[str, Any]] | None = ..., |
| 1906 | **fig_kw: Any |
| 1907 | ) -> tuple[Figure, dict[str, matplotlib.axes.Axes]]: ... |
| 1908 | |
| 1909 | |
| 1910 | @overload |
nothing calls this directly
no test coverage detected
searching dependent graphs…