如何同时在多个设备上绘图?
当我绘图时,我经常绘制到 eps
文件和 png
文件,如下所示:
postscript(file=paste(dir, output, "_ggplot.eps", sep=""), onefile=FALSE, horizontal=FALSE, width=4.8, height=4.0)
# Plotting code
dev.off()
png(paste(dir, output, "_ggplot.png", sep=""), width=450, height=300)
# Plotting code
dev.off()
问题是绘图代码重复两次。是否可以指定多个设备进行绘图?
When I am plotting, I often plot to an eps
file and a png
file like this:
postscript(file=paste(dir, output, "_ggplot.eps", sep=""), onefile=FALSE, horizontal=FALSE, width=4.8, height=4.0)
# Plotting code
dev.off()
png(paste(dir, output, "_ggplot.png", sep=""), width=450, height=300)
# Plotting code
dev.off()
The problem is that the plotting code is repeated twice. Is it possible to specify multiple devices for plotting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用 R.devices 包,您可以执行以下操作:
这将生成“myfig_ggplot.eps”和“myfig_ggplot.png”。默认的
sep
是逗号,默认的输出目录是figures/。Using the R.devices package, you can do:
This will generate 'myfig_ggplot.eps' and 'myfig_ggplot.png'. The default
sep
is a comma and the default output directory is figures/.ggplot(....)+(...)
ggsave("文件1.png")
ggsave("文件1.pdf")
ggsave("file1.jpg")
ggplot(....)+(...)
ggsave("文件2.png")
ggsave("文件2.pdf")
ggsave("文件2.jpg")
ggplot(....)+(...)
ggsave("file1.png")
ggsave("file1.pdf")
ggsave("file1.jpg")
ggplot(....)+(...)
ggsave("file2.png")
ggsave("file2.pdf")
ggsave("file2.jpg")
从标准用法来看,泰勒是正确的。但是,为了让生活更轻松,您可以尝试另一种方法:将绘图代码包装为函数,以便您可以包装一系列输出。这至少可以简化用于生成输出的代码。
另一种可行的可能性是通过 foreach 分叉您的流程,并且每次迭代都会生成不同类型的输出,具体取决于与迭代关联的索引。我这样做是为了并行生成很多图(虽然也许我使用了 Hadoop,但我现在不记得了)。
Tyler is correct from the standard usage. However, to make life easier, you can try an alternate method: wrap your plotting code as a function, so that you can then wrap a sequence of outputs. That can at least simplify your code for producing output.
Another possibility that may work is to fork your process, via
foreach
, and each iteration produces a different type of output, depending on the index associated with the iteration. I have done this to produce a lot of plots in parallel (though maybe I used Hadoop, I can't remember at the moment).您可以使用 for 循环:
You could use a for-loop:
您可以使用 dev.copy() 组合它们。例如,
查找
help(dev.copy)
了解更多详细信息。You can combine them using
dev.copy()
. For example,Lookup
help(dev.copy)
for more details.不,这是不可能的。至少根据
?grDevices
的手册没有:No it's not possible. At least not according to the manual for
?grDevices
: