Displaying 3 results from an estimated 3 matches for "f0f8ff".
Did you mean:
f01ff
2009 May 14
0
can I plot a matrix of colors?
Hi all,
I have a 36x14 matrix of hexadecimal coded colors (see attached file) that
was created with the following code:
cellcol[is.na(cellcol)] <- "#FFFF00"
#Aliceblue
cellcol[cellcol < 5] <- "#F0F8FF"
#Skyblue1
cellcol[cellcol >= 5 & cellcol < 20] <- "#87CEFF"
#Blue
cellcol[cellcol >= 20 & cellcol < 35] <- "#0000FF"
#Green3
cellcol[cellcol >= 35 & cellcol < 50] <- "#00CD00"
#Yellow2
cellcol[cellcol >= 50 & cellcol...
2000 Mar 29
1
pre summary: mapping of colornames into hsv?
...t; Jens> become an official R function, which of course
> would be a less
> Jens> redundant solution.
>
> and a day later, Jens provided
>
> .ColorDataBase <- matrix(c(
> "white", "#FFFFFF",
> "aliceblue", "#F0F8FF",
> "antiquewhite", "#FAEBD7",
> "antiquewhite1", "#FFEFDB",
> "antiquewhite2", "#EEDFCC",
> "antiquewhite3", "#CDC0B0",
> .............
> ))
>
> Now, we shou...
2000 Feb 29
0
mapping of colornames into hsv: half way done
...graphics.c maps 657 names tp colorstrings (lower case only)
internal name2col() and R colors() accesses those in graphics.c
Here is the color representations from graphics.c in R code
.ColorDataBase <- matrix(c(
"white", "#FFFFFF",
"aliceblue", "#F0F8FF",
"antiquewhite", "#FAEBD7",
"antiquewhite1", "#FFEFDB",
"antiquewhite2", "#EEDFCC",
"antiquewhite3", "#CDC0B0",
"antiquewhite4", "#8B8378",
"aquamarine", "...