更改调色板

时间:2013-02-04 21:13:40

标签: r ggplot2

我想在此散点图上的线条/点中获得更多种颜色:

enter image description here

require(ggplot2)
dt.gg <- read.csv("http://goo.gl/5yjEZ")
dt.gg$X <- NULL
dt.gg$X.1 <- NULL

ggplot(dt.gg, aes(x=base, y=pred, color=hospital,group=hospital)) + geom_point(shape=1) +
 geom_line()+ theme(legend.position="none") + scale_fill_brewer(palette=3)

scale_fill_brewer似乎不起作用

1 个答案:

答案 0 :(得分:3)

尝试:scale_colour_gradientn(colours = rainbow(7))