我使用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图表工作得很好,即使数据相同。