最佳答案
我有一个简单的数据框架,我正在尝试做一个组合线和点使用 ggplot2
绘图。假设我的数据是这样的:
df <- data.frame(x=rep(1:10,2), y=c(1:10,11:20),
group=c(rep("a",10),rep("b",10)))
And I'm trying to make a plot:
g <- ggplot(df, aes(x=x, y=y, group=group))
g <- g + geom_line(aes(colour=group))
g <- g + geom_point(aes(colour=group, alpha = .8))
g
结果看起来很好,除了一个例外。它有一个额外的图例显示我的 geom_point
层的 alpha
。
How can I keep the legend showing group colors, but not the one that shows my alpha settings?