matplotlib.colors.Colormap(name, N=256)¶Baseclass for all scalar to RGBA mappings.
Typically Colormap instances are used to convert data values (floats) from
the interval [0, 1] to the RGBA color that the respective Colormap
represents. For scaling of data into the [0, 1] interval see
matplotlib.colors.Normalize. It is worth noting that
matplotlib.cm.ScalarMappable subclasses make heavy use of this
data->normalize->map-to-color processing chain.
| Parameters: | name : str
N : int
|
|---|
colorbar_extend = None¶When this colormap exists on a scalar mappable and colorbar_extend
is not False, colorbar creation will pick up colorbar_extend as
the default value for the extend keyword in the
matplotlib.colorbar.Colorbar constructor.
is_gray()¶reversed(name=None)¶Make a reversed instance of the Colormap.
Note
Function not implemented for base class.
| Parameters: | name : str, optional
|
|---|
Notes
See LinearSegmentedColormap.reversed() and
ListedColormap.reversed()
set_bad(color='k', alpha=None)¶Set color to be used for masked values.
set_over(color='k', alpha=None)¶Set color to be used for high out-of-range values. Requires norm.clip = False
set_under(color='k', alpha=None)¶Set color to be used for low out-of-range values. Requires norm.clip = False