这里大家可以发现,用scale_color_brewer函数进行配色时,颜色是不够的,因为Set2只有8个配色,所以很多点都不显示了。 代码语言:javascript 复制 dat<-dat%>%mutate(.,cat=rep(1:30,5))p1<-ggplot(dat,aes(Sepal.Length,Sepal.Width))+geom_point(aes(color=factor(cat)))+theme_bw()p2<-ggplot(dat,aes(...
RColorBrewer 调色板包在 R 语言中是非常受欢迎的,它提供了 3 种不同类型的调色板: 连续型(sequential):单渐变色 离散型(divergent):双渐变色 定性型(qualitative):区分色 所谓使用调色板,本质上就是从调色板中得到预先定义好的颜色编码(通常是十六进制的),你完全可以从其他地方获得,但调色板提供了一定的便利。
1. Sequential,按顺序渐变的。 - Light colours for low data, dark for high data 2. Diverging,彼此之间差异变化较⼤的。 - Light colours for mid-range data, low and high contrasting dark colours 3. Qualitative,这个⽤于最⼤程度地显⽰不同类之间的差别。 - Colours designed to give ...