Other Parameters: | - corner_maskbool, optional
Enable/disable corner masking, which only has an effect if Z isa masked array. If False , any quad touching a masked point ismasked out. If True , only the triangular corners of quadsnearest those points are always masked out, other triangularcorners comprising three unmasked points are contoured as usual. Defaults to rcParams['contour.corner_mask'] (default: True). - colorscolor string or sequence of colors, optional
The colors of the levels, i.e. the lines for contour and theareas for contourf . The sequence is cycled for the levels in ascending order. If thesequence is shorter than the number of levels, it's repeated. As a shortcut, single color strings may be used in place ofone-element lists, i.e. 'red' instead of ['red'] to colorall levels with the same color. This shortcut does only work forcolor strings, not for other ways of specifying colors. By default (value None), the colormap specified by cmapwill be used. - alphafloat, optional
The alpha blending value, between 0 (transparent) and 1 (opaque). - cmapstr or
Colormap , optional A Colormap instance or registered colormap name. The colormapmaps the level values to colors.Defaults to rcParams['image.cmap'] (default: 'viridis'). If both colors and cmap are given, an error is raised. - norm
Normalize , optional If a colormap is used, the Normalize instance scales the levelvalues to the canonical colormap range [0, 1] for mapping tocolors. If not given, the default linear scaling is used. - vmin, vmaxfloat, optional
If not None, either or both of these values will be supplied tothe Normalize instance, overriding the default color scalingbased on levels. - origin{None, 'upper', 'lower', 'image'}, optional
Determines the orientation and exact position of Z by specifyingthe position of Z[0,0] . This is only relevant, if X, Yare not given. - None:
Z[0,0] is at X=0, Y=0 in the lower left corner. - 'lower':
Z[0,0] is at X=0.5, Y=0.5 in the lower left corner. - 'upper':
Z[0,0] is at X=N+0.5, Y=0.5 in the upper leftcorner. - 'image': Use the value from
rcParams['image.origin'] (default: 'upper').
- extent(x0, x1, y0, y1), optional
If origin is not None, then extent is interpreted as inimshow : it gives the outer pixel boundaries. In this case, theposition of Z[0, 0] is the center of the pixel, not a corner. Iforigin is None, then (x0, y0) is the position of Z[0, 0],and (x1, y1) is the position of Z[-1,-1]. Fractured empire 1.0 trailer. Fractured Empire is a 3D turn-based strategy wargame that puts you in brigade-level control of futuristic infantry and armored is a 3D turn-based strategy wargame that puts you in brigade-level control of futuristic infantry and armored. This argument is ignored if X and Y are specified in the callto contour. - locatorticker.Locator subclass, optional
The locator is used to determine the contour levels if theyare not given explicitly via levels.Defaults to MaxNLocator . - extend{'neither', 'both', 'min', 'max'}, optional, default: 'neither'
Determines the contourf -coloring of values that are outside thelevels range. If 'neither', values outside the levels range are not colored.If 'min', 'max' or 'both', color the values below, above or belowand above the levels range. Values below min(levels) and above max(levels) are mappedto the under/over values of the Colormap . Note, that mostcolormaps do not have dedicated colors for these by default, sothat the over and under values are the edge values of the colormap.You may want to set these values explicitly usingColormap.set_under and Colormap.set_over . Note An exising QuadContourSet does not get notified ifproperties of its colormap are changed. Therefore, an explicitcall QuadContourSet.changed() is needed after modifying thecolormap. The explicit call can be left out, if a colorbar isassigned to the QuadContourSet because it internally callsQuadContourSet.changed() . Example: - xunits, yunitsregistered units, optional
Override axis units by specifying an instance of amatplotlib.units.ConversionInterface . - antialiasedbool, optional
Enable antialiasing, overriding the defaults. Forfilled contours, the default is True. For line contours,it is taken from rcParams['lines.antialiased'] (default: True). - nchunkint >= 0, optional
If 0, no subdivision of the domain. Specify a positive integer todivide the domain into subdomains of nchunk by nchunk quads.Chunking reduces the maximum length of polygons generated by thecontouring algorithm which reduces the rendering workload passedon to the backend and also requires slightly less RAM. It canhowever introduce rendering artifacts at chunk boundaries dependingon the backend, the antialiased flag and value of alpha. - linewidthsfloat or sequence of float, optional
Only applies tocontour . The line width of the contour lines. If a number, all levels will be plotted with this linewidth. If a sequence, the levels in ascending order will be plotted withthe linewidths in the order specified. Defaults to rcParams['lines.linewidth'] (default: 1.5). - linestyles{None, 'solid', 'dashed', 'dashdot', 'dotted'}, optional
Only applies tocontour . If linestyles is None, the default is 'solid' unless the linesare monochrome. In that case, negative contours will take theirlinestyle from rcParams['contour.negative_linestyle'] (default: 'dashed') setting. linestyles can also be an iterable of the above stringsspecifying a set of linestyles to be used. If thisiterable is shorter than the number of contour levelsit will be repeated as necessary. - hatchesList[str], optional
Only applies tocontourf . A list of cross hatch patterns to use on the filled areas.If None, no hatching will be added to the contour.Hatching is supported in the PostScript, PDF, SVG and Aggbackends only.
|
---|