我想在此散点图上的线条/点中获得更多种颜色:
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
似乎不起作用
答案 0 :(得分:3)
尝试:scale_colour_gradientn(colours = rainbow(7))
。