Description Usage Arguments Value See Also Examples
Outputs a report of the status of individual files to the console.
1 | batch_report(path)
|
path |
A string of the path to the directory with the files for processing. |
An invisible NULL. The function is called for its side-effect of outputting a report of the status of individual files to the console.
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"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.