你可以将plotrix的输出保存到一个对象吗?

时间:2013-03-04 15:00:18

标签: r ggplot2

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

0 个答案:

没有答案