我想并排绘制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)