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

Method streamplot

xarray/plot/accessor.py:1163–1196  ·  view source on GitHub ↗
(  # type: ignore[misc,unused-ignore]  # None is hashable :(
        self,
        *args: Any,
        x: Hashable | None = None,
        y: Hashable | None = None,
        u: Hashable | None = None,
        v: Hashable | None = None,
        hue: Hashable | None = None,
        hue_style: HueStyleOptions = None,
        col: None = None,  # no wrap -> primitive
        row: None = None,  # no wrap -> primitive
        ax: Axes | None = None,
        figsize: Iterable[float] | None = None,
        size: float | None = None,
        col_wrap: int | Literal["auto"] | None = None,
        sharex: bool = True,
        sharey: bool = True,
        aspect: AspectOptions = None,
        subplot_kws: dict[str, Any] | None = None,
        add_guide: bool | None = None,
        cbar_kwargs: dict[str, Any] | None = None,
        cbar_ax: Axes | None = None,
        vmin: float | None = None,
        vmax: float | None = None,
        norm: Normalize | None = None,
        infer_intervals=None,
        center=None,
        levels=None,
        robust: bool | None = None,
        colors=None,
        extend=None,
        cmap=None,
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

1161
1162 @overload
1163 def streamplot( # type: ignore[misc,unused-ignore] # None is hashable :(
1164 self,
1165 *args: Any,
1166 x: Hashable | None = None,
1167 y: Hashable | None = None,
1168 u: Hashable | None = None,
1169 v: Hashable | None = None,
1170 hue: Hashable | None = None,
1171 hue_style: HueStyleOptions = None,
1172 col: None = None, # no wrap -> primitive
1173 row: None = None, # no wrap -> primitive
1174 ax: Axes | None = None,
1175 figsize: Iterable[float] | None = None,
1176 size: float | None = None,
1177 col_wrap: int | Literal["auto"] | None = None,
1178 sharex: bool = True,
1179 sharey: bool = True,
1180 aspect: AspectOptions = None,
1181 subplot_kws: dict[str, Any] | None = None,
1182 add_guide: bool | None = None,
1183 cbar_kwargs: dict[str, Any] | None = None,
1184 cbar_ax: Axes | None = None,
1185 vmin: float | None = None,
1186 vmax: float | None = None,
1187 norm: Normalize | None = None,
1188 infer_intervals=None,
1189 center=None,
1190 levels=None,
1191 robust: bool | None = None,
1192 colors=None,
1193 extend=None,
1194 cmap=None,
1195 **kwargs: Any,
1196 ) -> LineCollection: ...
1197
1198 @overload
1199 def streamplot(

Callers 3

streamplotFunction · 0.80
test_streamlineMethod · 0.80
test_facetgridMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_streamlineMethod · 0.64
test_facetgridMethod · 0.64