colour.plotting.plot_multi_sds_colour_rendering_indexes_bars

colour.plotting.plot_multi_sds_colour_rendering_indexes_bars(sds: Union[Sequence[Union[colour.colorimetry.spectrum.SpectralDistribution, colour.colorimetry.spectrum.MultiSpectralDistributions]], colour.colorimetry.spectrum.MultiSpectralDistributions], **kwargs: Any) Tuple[matplotlib.figure.Figure, matplotlib.axes._axes.Axes][source]

Plot the Colour Rendering Index (CRI) of given illuminants or light sources spectral distributions.

Parameters
Returns

Current figure and axes.

Return type

tuple

Examples

>>> from colour import (SDS_ILLUMINANTS,
...                     SDS_LIGHT_SOURCES)
>>> illuminant = SDS_ILLUMINANTS['FL2']
>>> light_source = SDS_LIGHT_SOURCES['Kinoton 75P']
>>> plot_multi_sds_colour_rendering_indexes_bars(
...     [illuminant, light_source])  
(<Figure size ... with 1 Axes>, <...AxesSubplot...>)
plot_multi_sds_colour_rendering_indexes_bars