我希望能够将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)?