使用scale_linetype_manual在ggplot图中更改一行

时间:2018-01-15 10:32:10

标签: r ggplot2 line

我正在尝试将我的ggplot中的一行从dash更改为点缀但是我失败了,函数scale_linetype_manual没有做这项工作。任何人都可以帮我解决这个问题吗?

ggplot(d, aes(a,value)) + 
geom_line(aes(color = series), size=2)+
scale_y_continuous(breaks=seq(-2.5, 2.5, 2.5)) +
coord_cartesian(ylim=c(-2.5, 2.5))+
scale_x_continuous(breaks=seq(-200, 2000, 1000)) +
scale_color_manual(values=c("#E69F00","#56B4E9",  "#56B4E9")) +
scale_linetype_manual(values=c("twodash", "dotted", "dotted")) +
theme(legend.direction = 'vertical', 
    legend.position = 'right',
    legend.key = element_rect(size = 7),
    legend.key.size = unit(3, 'lines'))+
theme(panel.grid.major = element_blank(), text = element_text(size=30), 
 panel.grid.minor = element_blank(),
    panel.background = element_blank(), axis.line = element_line(colour = 
 "black"))+
   geom_vline(xintercept=c(0), linetype="dotted", size=1.5)+
 geom_rect(data=rect, aes(xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax),
        color="gray55",
        alpha=0.4,
        inherit.aes = FALSE)+
labs(x = "time [ms]",
   y = "Amplitude [µV]", 
   color = "")

enter image description here

1 个答案:

答案 0 :(得分:4)

你的情节的'问题'是你没有映射审美linetyppe 变量。因此,您对scale_linetype_manual的调用无效。您应该将代码更改为

ggplot(d, aes(a,value)) + 
 geom_line(aes(color = series, linetype = series), size = 2) +
 ...