Axes.
pcolorfast
(*args, alpha=None, norm=None, cmap=None, vmin=None, vmax=None, data=None, **kwargs)[source]¶Create a pseudocolor plot with a non-regular rectangular grid.
Call signatures:
ax.pcolorfast(C, **kwargs)
ax.pcolorfast(xr, yr, C, **kwargs)
ax.pcolorfast(x, y, C, **kwargs)
ax.pcolorfast(X, Y, C, **kwargs)
This method is similar to ~.Axes.pcolor` and pcolormesh
.
It's designed to provide the fastest pcolor-type plotting with the
Agg backend. To achieve this, it uses different algorithms internally
depending on the complexity of the input grid (regular rectangular,
non-regular rectangular or arbitrary quadrilateral).
Warning
This method is experimental. Compared to pcolor
or
pcolormesh
it has some limitations:
Parameters: |
|
---|---|
Returns: |
|
Notes
Note
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
Objects passed as data must support item access (data[<arg>]
) and
membership test (<arg> in data
).
matplotlib.axes.Axes.pcolorfast
¶