用于生成多个PNG图的单个脚本

时间:2019-05-10 02:05:03

标签: r ggplot2 png

在R中,默认情况下,您可以使用单个脚本生成具有多页(1页:1个图形)的PDF文件,如下所示:

单文件多页PDF生成器。r

    select date_format(date_parse(t.payDate,'%Y-%m-%d %H:%i:%S'),'%Y-%m-%d') as payDate 
    from testTable  t 
    where t.paydate is not null and t.paydate <> '';

您还可以生成带有单个图形的PNG文件

单文件单图PNG生成器.r

library(ggplot2)

# graph for the 1st page
ggplot(...)

# graph for the 2nd page
ggplot(...)

如何仅使用R中的一个脚本来生成多个PNG图?

1 个答案:

答案 0 :(得分:0)

事实证明,png()函数可以多次用于定位新文件

library(ggplot2)

# graph for the 1st PNG file
png('/tmp/my-chart-1.png')
ggplot(...)

# graph for the 2nd PNG file
png('/tmp/my-chart-2.png')
ggplot(...)