ColToRgb | R Documentation |
R color to RGB (red/green/blue) conversion.
ColToRgb(col, alpha = FALSE)
col |
vector of any of the three kind of R colors, i.e., either a color name (an element of |
alpha |
logical value indicating whether alpha channel (opacity) values should be returned. |
This is merely a wrapper to col2rgb
, defined in order to follow this package's naming conventions.
A matrix with a column for each color. The three rows of the matrix indicate red, green and blue value and are named "red", "green", and "blue" accordingly. The matrix might have a 4th row if an alpha channel is requested.
Andri Signorell <andri@signorell.net>
col2rgb
, RgbToCol
ColToRgb("peachpuff")
ColToRgb(c(blu = "royalblue", reddish = "tomato")) # names kept
ColToRgb(1:8)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.