我在ggplot中有一个带有4个单独行的图,我添加了一个单独的geom_line()参数。我想添加图例,但scale_colour_manual在这种情况下不起作用。当我单独添加变量时,添加图例的正确方法是什么?
这是我的代码:
ggplot(proba[108:140,], aes(c,four)) +
geom_line(linetype=1, size=0.3) +
scale_x_continuous(breaks=seq(110,140,5)) +
theme_bw() +
theme(axis.line = element_line(colour = "black", size=0.25),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
panel.border = element_blank(),
panel.background = element_blank()) +
theme(axis.text.x = element_text(angle = 0, hjust = +0.5, size=6,color="black")) +
theme(axis.text.y = element_text(angle = 0, hjust = -100, size=6, color="black")) +
theme(axis.ticks=element_line(colour="black",size=0.25)) +
xlab("\nTime-steps") +
ylab("Proportion correct\n") +
theme(axis.text=element_text(size=8),axis.title=element_text(size=8)) +
geom_line(aes(c,three), size=0.2, linetype=2) +
geom_line(aes(c,one),linetype=3, size=0.8, colour="darkgrey") +
geom_line(aes(c,two), linetype=1, size=0.8, colour="darkgrey")
答案 0 :(得分:23)
只需将aes
中的颜色名称设置为图例中该行的名称即可。
我没有您的数据,但这是一个使用iris
一个带有随机y值的行的示例:
library(ggplot2)
line.data <- data.frame(x=seq(0, 10, length.out=10), y=runif(10, 0, 10))
qplot(Sepal.Length, Petal.Length, color=Species, data=iris) +
geom_line(aes(x, y, color="My Line"), data=line.data)
需要注意的关键是您要创建美学映射,但不是将颜色映射到数据框中的列,而是将其映射到您指定的字符串。 ggplot
将为该值指定颜色,就像来自数据框的值一样。您可以通过向数据框添加Species
列来生成与上面相同的图:
line.data$Species <- "My Line"
qplot(Sepal.Length, Petal.Length, color=Species, data=iris) +
geom_line(aes(x, y), data=line.data)
无论哪种方式,如果您不喜欢颜色ggplot2
分配,那么您可以使用scale_color_manual
指定自己的颜色:
qplot(Sepal.Length, Petal.Length, color=Species, data=iris) +
geom_line(aes(x, y, color="My Line"), data=line.data) +
scale_color_manual(values=c("setosa"="blue4", "versicolor"="red4",
"virginica"="purple4", "My Line"="gray"))
另一种选择是直接标记线条,或者从上下文中明确线条的目的。真的,最好的选择取决于你的具体情况。