blendcolors | R Documentation |
This function blends a list of colors using the specified blend mode.
blendcolors(colors, mode = c("blend", "average", "screen", "multiply"))
colors |
Color vectors. |
mode |
Blend mode. One of "blend", "average", "screen", or "multiply". |
FeatureDimPlot
blend <- c("red", "green", blendcolors(c("red", "green"), mode = "blend"))
average <- c("red", "green", blendcolors(c("red", "green"), mode = "average"))
screen <- c("red", "green", blendcolors(c("red", "green"), mode = "screen"))
multiply <- c("red", "green", blendcolors(c("red", "green"), mode = "multiply"))
show_palettes(list("blend" = blend, "average" = average, "screen" = screen, "multiply" = multiply))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.