我希望能够将 plotrix 图表与 ggplot 图表 uisng grid.arrange 结合起来。
我可以使用以下方法保存 ggplot2 的图像:
p<-ggplot(mtcars, aes(x=xyl, y=mgp)) + geom_point()
library(plotrix)
slices <- c(10, 12, 4, 16, 8)
lbls <- c("US", "UK", "Australia", "Germany", "France")
pie3D(slices,labels=lbls,explode=0.1, main="Pie Chart of Countries
如何将 pie3d 的输出保存到 p1 并使用 grid.arrange(p, p1)?