ggplot包装命令文本

我开始使用ggplot2软件包,并遇到了一个问题。

当我输入.R文件时:

barGG <- ggplot(data4,aes(date,base), colour = factor(operator)) 
barGG + geom_point(aes(color = operator)) + geom_smooth(aes(color = operator),method = loess, size = 1) + facet_grid(. ~ city) + ggtitle("Operators TOM by city") + scale_colour_manual(values = cols) + myTheme

一切正常,但如果我在不同的行中键入相同的命令:

barGG + geom_point(aes(color = operator)) 
      + geom_smooth(aes(color = operator),method = loess, size = 1) 
      + facet_grid(. ~ city) + ggtitle("Operators TOM by city") 
      + scale_colour_manual(values = cols) 
      + myTheme

只有第一行被执行。 我使用R版本3.0.3,平台:x86_64-w64-mingw32 / x64(64位)和R-studio版本0.98.501


你需要在行后放置+ ,而不是在下一行之前。 如果你不在最后加上+ ,R认为你的语句已经完成,并且不再寻找任何下一行。 在最后加上+ ,触发R继续将下一行添加到语句中。

链接地址: http://www.djcxy.com/p/77273.html

上一篇: ggplot wrap command text

下一篇: Trouble with fig.env in knitr?