Axes.
pcolormesh
(*args, data=None, **kwargs)¶Plot a quadrilateral mesh.
Call signatures:
pcolormesh(C)
pcolormesh(X, Y, C)
pcolormesh(C, **kwargs)
Create a pseudocolor plot of a 2-D array.
pcolormesh is similar to pcolor()
,
but uses a different mechanism and returns a different
object; pcolor returns a
PolyCollection
but pcolormesh
returns a
QuadMesh
. It is much faster,
so it is almost always preferred for large arrays.
C may be a masked array, but X and Y may not. Masked
array support is implemented via cmap and norm; in
contrast, pcolor()
simply does not
draw quadrilaterals with masked colors or vertices.
Returns: | matplotlib.collections.QuadMesh |
---|---|
Other Parameters: | |
cmap : Colormap, optional
norm : Normalize, optional
vmin, vmax : scalar, optional
shading : [ ‘flat’ | ‘gouraud’ ], optional
edgecolors : string, color, color sequence, optional
alpha : scalar, optional
|
See also
matplotlib.pyplot.pcolor
Notes
kwargs can be used to control the
matplotlib.collections.QuadMesh
properties:
Property Description agg_filter
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alpha
float or None animated
bool antialiased
or antialiasedsBoolean or sequence of booleans array
ndarray capstyle
unknown clim
a length 2 sequence of floats clip_box
a Bbox
instanceclip_on
bool clip_path
[( Path
,Transform
) |Patch
| None]cmap
a colormap or registered colormap name color
matplotlib color arg or sequence of rgba tuples contains
a callable function edgecolor
or edgecolorsmatplotlib color spec or sequence of specs facecolor
or facecolorsmatplotlib color spec or sequence of specs figure
a Figure
instancegid
an id string hatch
[ ‘/’ | ‘' | ‘|’ | ‘-‘ | ‘+’ | ‘x’ | ‘o’ | ‘O’ | ‘.’ | ‘*’ ] joinstyle
unknown label
object linestyle
or dashes or linestyles[‘solid’ | ‘dashed’, ‘dashdot’, ‘dotted’ | (offset, on-off-dash-seq) | '-'
|'--'
|'-.'
|':'
|'None'
|' '
|''
]linewidth
or linewidths or lwfloat or sequence of floats norm
Normalize
offset_position
[ ‘screen’ | ‘data’ ] offsets
float or sequence of floats path_effects
AbstractPathEffect
picker
[None | bool | float | callable] pickradius
float distance in points rasterized
bool or None sketch_params
(scale: float, length: float, randomness: float) snap
bool or None transform
Transform
url
a url string urls
List[str] or None visible
bool zorder
float
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>]: