MCPcopy Index your code
hub / github.com/pydata/xarray / contourf

Method contourf

xarray/plot/accessor.py:545–581  ·  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

543
544 @overload
545 def contourf( # type: ignore[misc,unused-ignore] # None is hashable :(
546 self,
547 *args: Any,
548 x: Hashable | None = None,
549 y: Hashable | None = None,
550 figsize: Iterable[float] | None = None,
551 size: float | None = None,
552 aspect: AspectOptions = None,
553 ax: Axes | None = None,
554 row: None = None, # no wrap -> primitive
555 col: None = None, # no wrap -> primitive
556 col_wrap: int | Literal["auto"] | None = None,
557 xincrease: bool | None = True,
558 yincrease: bool | None = True,
559 add_colorbar: bool | None = None,
560 add_labels: bool = True,
561 vmin: float | None = None,
562 vmax: float | None = None,
563 cmap=None,
564 center=None,
565 robust: bool = False,
566 extend=None,
567 levels=None,
568 infer_intervals=None,
569 colors=None,
570 subplot_kws: dict[str, Any] | None = None,
571 cbar_ax: Axes | None = None,
572 cbar_kwargs: dict[str, Any] | None = None,
573 xscale: ScaleOptions = None,
574 yscale: ScaleOptions = None,
575 xticks: ArrayLike | None = None,
576 yticks: ArrayLike | None = None,
577 xlim: tuple[float, float] | None = None,
578 ylim: tuple[float, float] | None = None,
579 norm: Normalize | None = None,
580 **kwargs: Any,
581 ) -> QuadContourSet: ...
582
583 @overload
584 def contourf(

Calls

no outgoing calls