修改qplot中的图例标题

时间:2016-05-07 19:53:10

标签: r ggplot2

我想在qplot中更改图例的标题,我在互联网上搜索但是一无所获。显示在图例中所包含类别上方的标题为Data$Treatment,我想将该文字更改为"Treatment Categories"。我应该在代码中添加什么内容?

qplot(Data$Measurement,
      residuals,
      colour = Data$Treatment,
      shape = Data$Treatment,
      size=I(3.9),
      xlab="Measurement Values",
      ylab="Residuals",
      main="Residuals Plot")

我还尝试将上述命令保存在名为p的变量中,然后运行以下命令:

p + labs(aesthetic='Treatment Categories')

0 个答案:

没有答案