get_element_colors: Get colors for a named vector based on a color palette.

Description Usage Arguments Value Examples

View source: R/get_element_colors.R

Description

Get colors for a named vector based on a color ramp palette.

Usage

1
get_element_colors(v, colRamp, rearr = F)

Arguments

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?

Value

A character vector of colors with the same length as v. The names of this vector are the unique elements specified by v.

Examples

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")))

kazeera/kazcolors documentation built on Aug. 19, 2021, 11:04 a.m.