batch_report: Batch Report

Description Usage Arguments Value See Also Examples

View source: R/report.R

Description

Outputs a report of the status of individual files to the console.

Usage

1

Arguments

path

A string of the path to the directory with the files for processing.

Value

An invisible NULL. The function is called for its side-effect of outputting a report of the status of individual files to the console.

See Also

batch_file_status()

Examples

1
2
3
4
5
6
7
8
path <- tempdir()
write.csv(mtcars, file.path(path, "file1.csv"))
batch_config(function(x) TRUE, path, regexp = "[.]csv$",)
batch_report(path)
batch_run(path, ask = FALSE)
batch_report(path)
batch_cleanup(path)
unlink(file.path(path, "file1.csv"))

batchr documentation built on Oct. 3, 2021, 9:06 a.m.