在ggplot2中的R折线图中编辑图例的标题

时间:2018-09-09 11:36:17

标签: r ggplot2

我之前曾问过一个问题,要使用ggplot2在线图中绘制多条线。

此处:Adding a second legend to line chart in ggplot2 in R

我正在使用那里提供的解决方案来生成图表,但是我想修改图例的标题。

我尝试了以下操作:

tidyr::gather(m, foo, value, -bar) %>% 
  ggplot(aes(bar, value, colour = foo, linetype = foo)) +
  geom_line() +
  scale_color_discrete(name = "my awesome title")

,我得到以下信息。

enter image description here

以上内容创建了一个单独的图例,称为“我的真棒标题”。我想要一个图例,其中图例的标题为“我的真棒标题”。

我尝试了这里提到的各种解决方案:How to change legend title in ggplot,但我无法使它起作用。任何帮助将不胜感激。

0 个答案:

没有答案