123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- from typing import Any, Literal, overload
- from numpy.typing import ArrayLike
- import numpy as np
- from matplotlib.axes import Axes, SubplotBase
- from matplotlib.backend_bases import RendererBase
- from matplotlib.figure import Figure, SubplotParams
- from matplotlib.transforms import Bbox
- class GridSpecBase:
- def __init__(
- self,
- nrows: int,
- ncols: int,
- height_ratios: ArrayLike | None = ...,
- width_ratios: ArrayLike | None = ...,
- ) -> None: ...
- @property
- def nrows(self) -> int: ...
- @property
- def ncols(self) -> int: ...
- def get_geometry(self) -> tuple[int, int]: ...
- def get_subplot_params(self, figure: Figure | None = ...) -> SubplotParams: ...
- def new_subplotspec(
- self, loc: tuple[int, int], rowspan: int = ..., colspan: int = ...
- ) -> SubplotSpec: ...
- def set_width_ratios(self, width_ratios: ArrayLike | None) -> None: ...
- def get_width_ratios(self) -> ArrayLike: ...
- def set_height_ratios(self, height_ratios: ArrayLike | None) -> None: ...
- def get_height_ratios(self) -> ArrayLike: ...
- def get_grid_positions(
- self, fig: Figure, raw: bool = ...
- ) -> tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]: ...
- @staticmethod
- def _check_gridspec_exists(figure: Figure, nrows: int, ncols: int) -> GridSpec: ...
- def __getitem__(
- self, key: tuple[int | slice, int | slice] | slice | int
- ) -> SubplotSpec: ...
- @overload
- def subplots(
- self,
- *,
- sharex: bool | Literal["all", "row", "col", "none"] = ...,
- sharey: bool | Literal["all", "row", "col", "none"] = ...,
- squeeze: Literal[False],
- subplot_kw: dict[str, Any] | None = ...
- ) -> np.ndarray: ...
- @overload
- def subplots(
- self,
- *,
- sharex: bool | Literal["all", "row", "col", "none"] = ...,
- sharey: bool | Literal["all", "row", "col", "none"] = ...,
- squeeze: Literal[True] = ...,
- subplot_kw: dict[str, Any] | None = ...
- ) -> np.ndarray | SubplotBase | Axes: ...
- class GridSpec(GridSpecBase):
- left: float | None
- bottom: float | None
- right: float | None
- top: float | None
- wspace: float | None
- hspace: float | None
- figure: Figure | None
- def __init__(
- self,
- nrows: int,
- ncols: int,
- figure: Figure | None = ...,
- left: float | None = ...,
- bottom: float | None = ...,
- right: float | None = ...,
- top: float | None = ...,
- wspace: float | None = ...,
- hspace: float | None = ...,
- width_ratios: ArrayLike | None = ...,
- height_ratios: ArrayLike | None = ...,
- ) -> None: ...
- def update(self, **kwargs: float | None) -> None: ...
- def locally_modified_subplot_params(self) -> list[str]: ...
- def tight_layout(
- self,
- figure: Figure,
- renderer: RendererBase | None = ...,
- pad: float = ...,
- h_pad: float | None = ...,
- w_pad: float | None = ...,
- rect: tuple[float, float, float, float] | None = ...,
- ) -> None: ...
- class GridSpecFromSubplotSpec(GridSpecBase):
- figure: Figure | None
- def __init__(
- self,
- nrows: int,
- ncols: int,
- subplot_spec: SubplotSpec,
- wspace: float | None = ...,
- hspace: float | None = ...,
- height_ratios: ArrayLike | None = ...,
- width_ratios: ArrayLike | None = ...,
- ) -> None: ...
- def get_topmost_subplotspec(self) -> SubplotSpec: ...
- class SubplotSpec:
- num1: int
- def __init__(
- self, gridspec: GridSpecBase, num1: int, num2: int | None = ...
- ) -> None: ...
- @staticmethod
- def _from_subplot_args(figure, args): ...
- @property
- def num2(self) -> int: ...
- @num2.setter
- def num2(self, value: int) -> None: ...
- def get_gridspec(self) -> GridSpec: ...
- def get_geometry(self) -> tuple[int, int, int, int]: ...
- @property
- def rowspan(self) -> range: ...
- @property
- def colspan(self) -> range: ...
- def is_first_row(self) -> bool: ...
- def is_last_row(self) -> bool: ...
- def is_first_col(self) -> bool: ...
- def is_last_col(self) -> bool: ...
- def get_position(self, figure: Figure) -> Bbox: ...
- def get_topmost_subplotspec(self) -> SubplotSpec: ...
- def __eq__(self, other: object) -> bool: ...
- def __hash__(self) -> int: ...
- def subgridspec(
- self, nrows: int, ncols: int, **kwargs
- ) -> GridSpecFromSubplotSpec: ...
|