3

在 ggplot 中指定图例中的颜色时,我遇到了两个不同的问题。我试图做一个简化的例子来说明我的问题:

df <- data.frame(x=rep(1:9, 10), y=as.vector(t(aaply(1:10, 1, .fun=function(x){x:(x+8)}))), method=factor(rep(1:9, each=10)), DE=factor(rep(1:9, each=10)))
ggplot(df, aes(x, y, color=method, group=DE, linetype=DE)) + geom_smooth(stat="identity")

出于某种原因,标题 DE 下的图例中显示的线型都是蓝色的。我希望它们是黑色的,但我不知道为什么它们首先是蓝色的,所以我不知道如何改变它们。

对于我的另一个问题,我试图同时使用点颜色和点形状来显示我的数据中的两种不同的区别。我想有这两个传说。这是我所拥有的:

classifiers <- c("KNN", "RF", "NB", "LR", "Tree")
des <- c("Uniform", "Gaussian", "KDE")

withoutDE <- c(.735, .710, .706, .628, .614, .720, .713, .532, .523, .557, .677, .641, .398, .507, .538)
withDE <- c(.769, .762, .758, .702, .707, .752, .745, .655, .721, .733, .775, .772, .749, .756, .759)

df <- data.frame(WithoutDE=withoutDE, WithDE=withDE, DE=rep(des, each=5), Classifier=rep(classifiers, 3))
df <- cbind(df, Method=paste(df$DE, df$Classifier, sep=""))

ggplot() + geom_point(data=df, aes(x=WithoutDE, y=WithDE, shape=Classifier, fill=DE), size=3) + ylim(0,1) + xlim(0,1) + xlab("AUC without DE") + ylab("AUC with DE") + scale_shape_manual(values=21:25) + scale_fill_manual(values=c("pink", "blue", "white"), labels=c("Uniform", "KDE", "Gaussian")) + theme(legend.position=c(.85,.3))

如果我更改要更改的颜色以及填充(通过将 color=DE 放入 aes),那么这些在图例中可见。不过,我喜欢在点周围有黑色边框。我只想让图例中的点内部反映图中的点填充。(我也想将两个图例并排放置,但我真的只想让颜色立即生效)

我花了太长时间在谷歌上搜索这两个问题,并尝试了各种解决方案,但都没有成功。有谁知道我做错了什么?

4

1 回答 1

8

对于问题 1:

为线型的图例和颜色的图例赋予相同的名称。

ggplot(df, aes(x, y, color=method, group=DE, linetype=DE)) + 
  geom_smooth(stat="identity") +
  scale_color_discrete("Line") +
  scale_linetype_discrete("Line")

对于问题 2:

我认为您的填充与您的数据不匹配。您应该将值的名称分配给scale_x_manual调用中的每种颜色。

我无法得到点的黑色边框。不过,这是我能够得到的:

ggplot() + 
  geom_point(data=df, aes(x=WithoutDE, y=WithDE, shape=Classifier, 
                          fill=DE, colour=DE), size=3) + 
  ylim(0,1) + xlim(0,1) + 
  xlab("AUC without DE") + 
  ylab("AUC with DE") + 
  scale_shape_manual(values=21:25) + 
  scale_fill_manual(values=c("Uniform"="pink", "KDE"="blue", "Gaussian"="white"), 
                    guide="none") +
  scale_colour_manual(values=c("Uniform"="pink", "KDE"="blue", "Gaussian"="white"), 
                      labels=c("Uniform", "KDE", "Gaussian")) +
  theme(legend.position=c(.85,.3))

我不知道你是否可以控制图例中的点类型。也许有更多知识的其他人ggplot2可以弄清楚。

于 2013-10-12T06:09:44.620 回答