我有以下代码生成图。
cols <- brewer.pal(n = 3, name = 'Dark2')
p4 <- ggplot(all.m, aes(x=xval, y=yval, colour = Approach, ymax = 0.95)) + theme_bw() +
geom_errorbar(aes(ymin= yval - se, ymax = yval + se), width=5, position=pd) +
geom_line(position=pd) + geom_point(position=pd) +
geom_hline(aes(yintercept = cp.best$slope, colour = "C2P"), show_guide = FALSE) +
scale_color_manual(name="Appraoch", breaks=c("C2P", "P2P", "CP2P"), values = cols[c(1,3,2)]) +
scale_y_continuous(breaks = seq(0.4, 0.95, 0.05), "Test AUROC") +
scale_x_continuous(breaks = seq(10, 150, by = 20), "# Number of Patient Samples in Training")
p4 <- p4 + theme(legend.direction = 'horizontal',
legend.position = 'top',
plot.margin = unit(c(5.1, 7, 4.5, 3.5)/2, "lines"),
text = element_text(size=15), axis.title.x=element_text(vjust=-1.5), axis.title.y=element_text(vjust=2))
p4
如何将符号更改为图例中没有圆点的线条&#34; C2P&#34;只是,不影响&#34; P2P&#34;和&#34; CP2P&#34;?
答案 0 :(得分:5)
您可以使用override.aes
从图例中删除点标记,方法是在图中添加以下代码行:
guides(colour=guide_legend(override.aes=list(shape=c(NA,16,16))))
override.aes
更改图例而不更改图表。在这种情况下,我们想要更改图例点标记,因此我们要更改点的shape
。点标记编号16是一个实心圆(参见?pch
),我们要为两个标记保留,但我们使用NA
删除图例中第一个项目的点标记。 / p>