MCPcopy
hub / github.com/pydata/xarray / pcolormesh

Method pcolormesh

xarray/plot/accessor.py:666–702  ·  view source on GitHub ↗
(  # type: ignore[misc,unused-ignore]  # None is hashable :(
        self,
        *args: Any,
        x: Hashable | None = None,
        y: Hashable | None = None,
        figsize: Iterable[float] | None = None,
        size: float | None = None,
        aspect: AspectOptions = None,
        ax: Axes | None = None,
        row: None = None,  # no wrap -> primitive
        col: None = None,  # no wrap -> primitive
        col_wrap: int | Literal["auto"] | None = None,
        xincrease: bool | None = True,
        yincrease: bool | None = True,
        add_colorbar: bool | None = None,
        add_labels: bool = True,
        vmin: float | None = None,
        vmax: float | None = None,
        cmap=None,
        center=None,
        robust: bool = False,
        extend=None,
        levels=None,
        infer_intervals=None,
        colors=None,
        subplot_kws: dict[str, Any] | None = None,
        cbar_ax: Axes | None = None,
        cbar_kwargs: dict[str, Any] | None = None,
        xscale: ScaleOptions = None,
        yscale: ScaleOptions = None,
        xticks: ArrayLike | None = None,
        yticks: ArrayLike | None = None,
        xlim: tuple[float, float] | None = None,
        ylim: tuple[float, float] | None = None,
        norm: Normalize | None = None,
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

664
665 @overload
666 def pcolormesh( # type: ignore[misc,unused-ignore] # None is hashable :(
667 self,
668 *args: Any,
669 x: Hashable | None = None,
670 y: Hashable | None = None,
671 figsize: Iterable[float] | None = None,
672 size: float | None = None,
673 aspect: AspectOptions = None,
674 ax: Axes | None = None,
675 row: None = None, # no wrap -> primitive
676 col: None = None, # no wrap -> primitive
677 col_wrap: int | Literal["auto"] | None = None,
678 xincrease: bool | None = True,
679 yincrease: bool | None = True,
680 add_colorbar: bool | None = None,
681 add_labels: bool = True,
682 vmin: float | None = None,
683 vmax: float | None = None,
684 cmap=None,
685 center=None,
686 robust: bool = False,
687 extend=None,
688 levels=None,
689 infer_intervals=None,
690 colors=None,
691 subplot_kws: dict[str, Any] | None = None,
692 cbar_ax: Axes | None = None,
693 cbar_kwargs: dict[str, Any] | None = None,
694 xscale: ScaleOptions = None,
695 yscale: ScaleOptions = None,
696 xticks: ArrayLike | None = None,
697 yticks: ArrayLike | None = None,
698 xlim: tuple[float, float] | None = None,
699 ylim: tuple[float, float] | None = None,
700 norm: Normalize | None = None,
701 **kwargs: Any,
702 ) -> QuadMesh: ...
703
704 @overload
705 def pcolormesh(

Calls

no outgoing calls