colour.plotting.plot_multi_sds_colour_rendering_indexes_bars#

colour.plotting.plot_multi_sds_colour_rendering_indexes_bars(sds: Sequence[SpectralDistribution | MultiSpectralDistributions] | SpectralDistribution | MultiSpectralDistributions, **kwargs: Any) Tuple[Figure, 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>, <...Axes...>)
plot_multi_sds_colour_rendering_indexes_bars