grid.arrange出错:输入必须是grobs

Jer*_*Who 7 r ggplot2

我有以下R脚本:

    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)
Run Code Online (Sandbox Code Playgroud)

我在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             
Run Code Online (Sandbox Code Playgroud)

ton*_*nov 16

我喜欢这个特别的错误,这是一个隐秘的错误.长话短说,参数是ncol,不是ncols.在你的代码中,1被视为一个绘图对象,这就是它失败的原因,而不是因为ggplots无效.错误消息不是很有帮助,这掩盖了这种情况.

# same error as with ncols=1
grid.arrange(c1, c2, blah=1)
# fine
grid.arrange(c1, c2, ncol=1)
Run Code Online (Sandbox Code Playgroud)