matplotlib.pyplot.pcolormesh(*args, **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.pcolorNotes
kwargs can be used to control the
matplotlib.collections.QuadMesh properties:
Property Description agg_filtera filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alphafloat or None animatedbool antialiasedor antialiasedsBoolean or sequence of booleans arrayndarray capstyleunknown clima length 2 sequence of floats clip_boxa Bboxinstanceclip_onbool clip_path[( Path,Transform) |Patch| None]cmapa colormap or registered colormap name colormatplotlib color arg or sequence of rgba tuples containsa callable function edgecoloror edgecolorsmatplotlib color spec or sequence of specs facecoloror facecolorsmatplotlib color spec or sequence of specs figurea Figureinstancegidan id string hatch[ ‘/’ | ‘' | ‘|’ | ‘-‘ | ‘+’ | ‘x’ | ‘o’ | ‘O’ | ‘.’ | ‘*’ ] joinstyleunknown labelobject linestyleor dashes or linestyles[‘solid’ | ‘dashed’, ‘dashdot’, ‘dotted’ | (offset, on-off-dash-seq) | '-'|'--'|'-.'|':'|'None'|' '|'']linewidthor linewidths or lwfloat or sequence of floats normNormalizeoffset_position[ ‘screen’ | ‘data’ ] offsetsfloat or sequence of floats path_effectsAbstractPathEffectpicker[None | bool | float | callable] pickradiusfloat distance in points rasterizedbool or None sketch_params(scale: float, length: float, randomness: float) snapbool or None transformTransformurla url string urlsList[str] or None visiblebool zorderfloat
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>]: