plotrix图形和ggplot2图形并排

时间:2013-01-15 13:12:44

标签: r ggplot2 plotrix

  

可能重复:
  Combine base and ggplot graphics in R figure window

我想并排绘制plotrix图形和ggplot2图形。我该怎么办? 以下是未成功的尝试(gg1未出现在图中)。

library(ggplot2)
library(gridExtra)
library(plotrix)

Mvalues <- matrix(rpois(9,1), ncol=3)
Mcolors <- matrix(rpois(9,5), ncol=3)

g1 <- color2D.matplot(x=Mvalues, show.values=2, cellcolors=Mcolors, 
        xlab="x", ylab="y", axes=FALSE, vcex=0.4)
gg1 <- grob(g1) 
gg2 <- ggplot(diamonds, aes(clarity, fill=cut)) + geom_bar(position="dodge") 

grid.arrange(gg1,gg2,ncol=2)

0 个答案:

没有答案