我的大部分绘图都是用 ggplot2 制作的,而 ggsave 命令用一行将它们保存在应有的位置。但是,使用 vcd 包的马赛克图最适合我的数据。问题:我没有收到以下代码的错误消息。R 说它保存了我的图,但保存的图是我创建的最后一个 ggplot 图,而不是我想要的马赛克图。当然我可以在 RStudio 中手动保存,但我很确定有更好的方法。有任何想法吗?
Onlyaround <- subset(prepData, preposition=="around")
attach(Onlyaround)
mytable <- table(exp_group, session, result)
ftable(mytable)
mosaic(mytable, shade=TRUE, legend=TRUE, main = "Around by Group")
margin.table(mytable)
ggsave("pics/around_mosaic.png")
detach(Onlyaround)