Description Usage Arguments Value Examples
View source: R/get_element_colors.R
Get colors for a named vector based on a color ramp palette.
1 | get_element_colors(v, colRamp, rearr = F)
|
v |
character vector. Unique elements to get colors for. |
colRamp |
colorRampPalette functions object containing colors for palette. Use function get_col_palette() to create. See ?colorRampPalette . |
rearr |
logical; should vector be arranged so a color gradient isn't created with the original vector order? |
A character vector of colors with the same length as v. The names of this vector are the unique elements specified by v.
1 2 3 | x <- LETTERS[1:6]
get_element_colors(x, get_col_palette("RdBu"))
get_element_colors(x, colorRampPalette(RColorBrewer::brewer.pal(9, "RdBu")))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.