Grid Extra中的Plotrix:“gList”中允许“没有grobs”

时间:2016-04-24 13:20:19

标签: r gridextra plotrix

我使用Plotrix创建了一个战舰情节:

k<-battleship.plot(data, main="Distribution",xlab="Type",ylab="Phase", 
                                                        maxxspan=0.6,maxyspan=0.45)

j<-battleship.plot(data2, main="Distribution",xlab="Type",ylab="Phase", 
                                                        maxxspan=0.6,maxyspan=0.45)

我想使用gridExtra打印两个图:

library(gridExtra)
grid.arrange(j, k, ncol=1, nrow =2, top=("Types by Phase"))

我收到以下错误:

Error in gList(list(mar = c(2, 5, 5, 1), wrapvp = list(x = 0.5, y = 0.5,  : 
  only 'grobs' allowed in "gList"

我已经尝试过arrangeGrob而没有成功。

如何克服这个问题? ggplot2图表工作得很好,即使数据相同。

0 个答案:

没有答案