map_to_colors-ColorMapping-method | R Documentation |
Map Values to Colors
## S4 method for signature 'ColorMapping'
map_to_colors(object, x)
object |
A |
x |
Input values. |
It maps a vector of values to a vector of colors.
This function provides a uniform way for discrete and continuous color mapping.
A vector of colors.
Zuguang Gu <z.gu@dkfz.de>
cm = ColorMapping(colors = c("A" = "red", "B" = "black"))
map_to_colors(cm, sample(c("A", "B"), 10, replace = TRUE))
require(circlize)
col_fun = colorRamp2(c(0, 1), c("white", "red"))
cm = ColorMapping(col_fun = col_fun)
map_to_colors(cm, runif(10))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.