View source: R/convert_color.R
convert_color | R Documentation |
This function converts RGB colors to LAB, HEX and XYZ (Esta funcao converte cores RGB para LAB, HEX e XYZ).
convert_color(color)
color |
A vector with 3 values (r, g and b) or a data.frame with 3 columns (r, g and b) (Um vetor com 3 valores(r, g e b) ou um data.frame com 3 colunas (r, g e b)). |
Displays colors in RGB for LAB, HEX and XYZ (Apresenta as cores em RGB para LAB, HEX e XYZ)
Alcinei Mistico Azevedo (Instituto de ciencias agrarias da UFMG)
pick_color
#Valores de RGB
color=c(0.15,0.16,0.17)
convert_color(color)
color=data.frame(R=runif(10),G=runif(10),B=runif(10))
color
convert_color(color)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.