LinearSegmentedColormap.from_file¶
-
static
LinearSegmentedColormap.from_file(path, warn_on_failure=False)[source]¶ Load colormap from a file. Valid file extensions are described in the below table.
Extension
Description
.hexList of HEX strings in any format (comma-separated, separate lines, with double quotes… anything goes).’ColorBlind10’:
.xmlXML files with
<Point .../>entries specifyingx,r,g,b, and optionally,avalues, wherexis the colormap coordinate and the rest are the RGB and opacity (or “alpha”) values..rgb3-column table delimited by commas or consecutive spaces, each column indicating red, blue and green color values.
.xrgbAs with
.rgb, but with 4 columns. The first column indicates the colormap coordinate..rgba,.xrgbaAs with
.rgb,.xrgb, but with a trailing opacity (or “alpha”) column.- Parameters
path (str) – The file path.
warn_on_failure (bool, optional) – If
True, issue a warning when loading fails rather than raising an error.