MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / spy

Function spy

lib/matplotlib/pyplot.py:4213–4233  ·  view source on GitHub ↗
(
    Z: ArrayLike,
    precision: float | Literal["present"] = 0,
    marker: str | None = None,
    markersize: float | None = None,
    aspect: Literal["equal", "auto"] | float | None = "equal",
    origin: Literal["upper", "lower"] = "upper",
    **kwargs,
)

Source from the content-addressed store, hash-verified

4211# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
4212@_copy_docstring_and_deprecators(Axes.spy)
4213def spy(
4214 Z: ArrayLike,
4215 precision: float | Literal["present"] = 0,
4216 marker: str | None = None,
4217 markersize: float | None = None,
4218 aspect: Literal["equal", "auto"] | float | None = "equal",
4219 origin: Literal["upper", "lower"] = "upper",
4220 **kwargs,
4221) -> AxesImage:
4222 __ret = gca().spy(
4223 Z,
4224 precision=precision,
4225 marker=marker,
4226 markersize=markersize,
4227 aspect=aspect,
4228 origin=origin,
4229 **kwargs,
4230 )
4231 if isinstance(__ret, _ColorizerInterface):
4232 sci(__ret)
4233 return __ret
4234
4235
4236# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 3

gcaFunction · 0.85
sciFunction · 0.85
spyMethod · 0.80

Tested by

no test coverage detected