|
A library for working with phylogenetic and population genetic data.
v0.32.0
|
|
Go to the documentation of this file. 1 #ifndef GENESIS_UTILS_COLOR_HEAT_MAP_H_
2 #define GENESIS_UTILS_COLOR_HEAT_MAP_H_
139 double min_value = std::numeric_limits<double>::quiet_NaN();
146 double max_value = std::numeric_limits<double>::quiet_NaN();
166 #endif // include guard
Store a list of colors and offer them as a map for values in range [ 0.0, 1.0 ].
ColorNorm color_norm
Select which ColorNormalization to apply to the data.
NormalizationRange
Normalize the colors over the whole matrix, or individually per row or column.
ColorMap color_map
Set the ColorMap with all its properties to use for the heatmap.
ColorNorm
Type of color normalization to apply.
HeatmapParameters(ColorMap const &map)
Constructor from a ColorMap.
NormalizationRange normalization_range
Range about which to calculate the min and max value for the normalization.
std::unique_ptr< ColorNormalization > make_heatmap_color_norm(Matrix< double > const &values, HeatmapParameters const ¶meters)
Container namespace for all symbols of genesis in order to keep them separate when used as a library.
double min_value
Minimum value to use for the color normalization.
Matrix< Color > make_heatmap_matrix(Matrix< double > const &values, HeatmapParameters const ¶meters)
double max_value
Maximum value to use for the color normalization.