我有以下R-Script:
library(ggplot2)
library(gridExtra)
Sys.setenv(LANG ="en")
c1 <- ggplot(mtcars, aes(factor(cyl))) + geom_bar()
c2 <- ggplot(mtcars, aes(factor(cyl))) + geom_bar() + coord_flip()
grid.arrange(c1, c2, ncols=1)
我在grid.arrange中遇到以下错误:
arrangeGrob错误(...,as.table = as.table,clip = clip,main = main,:输入必须是grobs!
我无法找出导致问题的原因。
以下是我使用的版本:
sessionInfo() R版本3.0.2(2013-09-25) 平台:x86_64-apple-darwin10.8.0(64位)
locale:
[1] de_DE.UTF-8/de_DE.UTF-8/de_DE.UTF-8/C/de_DE.UTF-8/de_DE.UTF-8
attached base packages:
[1] grid stats graphics grDevices utils datasets methods base
other attached packages:
[1] gridExtra_0.9.1 ggplot2_0.9.3.1
loaded via a namespace (and not attached):
[1] colorspace_1.2-4 digest_0.6.4 gtable_0.1.2 labeling_0.2 MASS_7.3-31 munsell_0.4.2 plyr_1.8.1 proto_0.3-10 Rcpp_0.11.1 reshape2_1.2.2
[11] scales_0.2.4 stringr_0.6.2 tools_3.0.2
答案 0 :(得分:16)
我喜欢这个特别的错误,这是一个隐秘的错误。长话短说,参数是ncol
,而不是ncols
。在您的代码中,1
被视为绘图对象,因此它失败的原因,不是因为ggplots无效。错误消息不是很有帮助,这掩盖了这种情况。
# same error as with ncols=1
grid.arrange(c1, c2, blah=1)
# fine
grid.arrange(c1, c2, ncol=1)