ggplot2中带有虚线的图形显示为实线

时间:2019-10-28 11:39:43

标签: r ggplot2 line dotted-line

我试图按组绘制不同的线,但在图形的某些部分,虚线显示为实线。

我不知道发生了什么。

enter image description here

ggplot(data, aes(x=income, y = fit)) +
  geom_line(aes(linetype=sex)) + 
  scale_linetype_manual (values=c("dotted","dashed"), na.value="blank",
                         name = "Sex") +
  facet_grid(.~ parental_educ) +
  theme_bw()

0 个答案:

没有答案