简体   繁体   中英

How to autogenerate color vector from a numeric vector

I have a numeric vector as such,

> z <- c("cat","cat","dog","dolphin","cat")
> z <- as.numeric( as.factor(z))
> z
[1] 1 1 2 3 1

from this, how do I autogenerate some color pallette? for example, c("red","red", "blue", "green", "red") or whatever color pallete is available.

I tried using rainbow(length(z)) but that did not work.

I think that what you are intending is that if the values in z are the same, then the colors are the same. What you want is:

z <- c("cat","cat","dog","dolphin","cat")
rainbow(length(unique(z)))[as.numeric( as.factor(z))]
[1] "#FF0000FF" "#FF0000FF" "#00FF00FF" "#0000FFFF" "#FF0000FF"

This generates a different color for each distinct value of z, but when the values are equal, they get the same color.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM