使用 ggsave (ggplot2) 使用不同的文件格式两次保存 ggplot

Save ggplot with twice with different file formats with ggsave (ggplot2)

有没有办法只用一个 ggsave 命令将 ggplot 保存两次为不同的文件格式?例如。 plot.pdf 和 plot.png

您可以这样使用 mapply()

#Code
mapply(function(x) ggsave(x,plot = Yourplot,width = 25, height = 18, units = 'cm'),
       x=c('plot.pdf','plot.png'))

带有 tidyverse 的选项将是

library(purrr)
library(ggplot2)
map(c('plot.pdf', 'plot.png'), ~ ggsave(.x, plot = Yourplot, width = 25,
             height = 18, units = 'cm'))