colorRamp3 | R Documentation |
This function is modified from https://rdrr.io/cran/circlize/src/R/utils.R Colors are linearly interpolated according to break values and corresponding colors through CIE Lab color space ('colorspace::LAB') by default. Values exceeding breaks will be assigned with corresponding maximum or minimum colors.
colorRamp3(breaks, colors, transparency = 0, space = "LAB")
breaks |
A vector indicating numeric breaks |
colors |
A vector of colors which correspond to values in “breaks“ |
transparency |
A single value in “[0, 1]“. 0 refers to no transparency and 1 refers to full transparency |
space |
color space in which colors are interpolated. Value should be one of "RGB", "HSV", "HLS", "LAB", "XYZ", "sRGB", "LUV", see 'colorspace::color-class' for detail. |
It returns a function which accepts a vector of numeric values and returns interpolated colors.
## Not run:
col_fun = colorRamp3(c(-1, 0, 1), c("green", "white", "red"))
col_fun(c(-2, -1, -0.5, 0, 0.5, 1, 2))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.