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