Description Usage Arguments Value Note Author(s) See Also Examples
View source: R/string.to.color.R
Automatically convert a vector of strings into a color for easy plotting
1 | string.to.colors(string, colors = NULL, alpha = 1)
|
string |
a vector of strings representing groups. |
colors |
a vector of colors, one for each unique element in |
alpha |
a transparency value to apply to all colors (or a vector of transparency values) |
a vector of colors, one for each element in string
This function can also be used to specify pch values, cex values, or any other plotting values the user may wish to differ across groups. See examples.
Dustin Fife
number.to.colors
alpha
1 2 3 4 | groups = sample(LETTERS[1:5], size=100, replace=TRUE)
plot(rnorm(100), rnorm(100), col=string.to.colors(groups))
plot(rnorm(100), rnorm(100), col=string.to.colors(groups),
pch=as.numeric(string.to.colors(groups, colors=c(16:20))))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.