as_tibble.palettes_colour {palettes} | R Documentation |
as_tibble()
turns an existing colour vector or colour palette into a
so-called tibble, a data frame with class tbl_df
.
## S3 method for class 'palettes_colour'
as_tibble(x, ...)
## S3 method for class 'palettes_palette'
as_tibble(x, ...)
x |
An object of class |
... |
Not used. |
A tibble. The output has the following properties:
For objects of class palettes_colour
: A tibble with
column colour
containing the colour vector.
For objects of class palettes_palette
: A tibble with
columns palette
and colour
containing palette names and colour vectors.
x <- pal_colour(c("#663171", "#EA7428", "#0C7156"))
as_tibble(x)
y <- pal_palette(
Egypt = c("#DD5129", "#0F7BA2", "#43B284", "#FAB255"),
Java = c("#663171", "#CF3A36", "#EA7428", "#E2998A", "#0C7156")
)
as_tibble(y)