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

Method imshow

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

301
302 @overload
303 def imshow( # type: ignore[misc,unused-ignore] # None is hashable :(
304 self,
305 *args: Any,
306 x: Hashable | None = None,
307 y: Hashable | None = None,
308 figsize: Iterable[float] | None = None,
309 size: float | None = None,
310 aspect: AspectOptions = None,
311 ax: Axes | None = None,
312 row: None = None, # no wrap -> primitive
313 col: None = None, # no wrap -> primitive
314 col_wrap: int | Literal["auto"] | None = None,
315 xincrease: bool | None = True,
316 yincrease: bool | None = True,
317 add_colorbar: bool | None = None,
318 add_labels: bool = True,
319 vmin: float | None = None,
320 vmax: float | None = None,
321 cmap=None,
322 center=None,
323 robust: bool = False,
324 extend=None,
325 levels=None,
326 infer_intervals=None,
327 colors=None,
328 subplot_kws: dict[str, Any] | None = None,
329 cbar_ax: Axes | None = None,
330 cbar_kwargs: dict[str, Any] | None = None,
331 xscale: ScaleOptions = None,
332 yscale: ScaleOptions = None,
333 xticks: ArrayLike | None = None,
334 yticks: ArrayLike | None = None,
335 xlim: tuple[float, float] | None = None,
336 ylim: tuple[float, float] | None = None,
337 norm: Normalize | None = None,
338 **kwargs: Any,
339 ) -> AxesImage: ...
340
341 @overload
342 def imshow(

Calls

no outgoing calls