我有以下数据和图表
c1 <- seq(1,100,1)
c2 <- rnorm(100,0,1)
c3 <- rep(c(1,2,3,4),25)
dat <- data.frame(cbind(c1,c2,c3))
library(ggplot2)
ggplot(dat, aes(x = c1, y = c2, color = as.factor(c3))) +
geom_line()
如何包含描述c3聚合的一条线(也在图例中),即一条线可以使用的线
ggplot(dat, aes(x = c1, y = c2)) +
geom_line()
提前致谢。
答案 0 :(得分:1)
这可能是一个简单的解决方法:
dat0<-dat
dat0$c3="All"
dat1<-rbind(dat,dat0)
ggplot(dat1, aes(x = c1, y = c2, color = as.factor(c3))) +geom_line()