process_yaml | R Documentation |
Process a yaml file. The file defines the pre-download function, the download function and the post download function.
process_yaml(ymlfile, verbose = TRUE)
ymlfile |
A file in a YAML format defining the pre-download/ download and post download functions together with their arguments. |
verbose |
If TRUE, include status messages (if any) |
A list of files processed (downloaded and post processed)
## Not run: ymlfile <- system.file("exdata", "sampleapp.yml", package = "binman") trdata <- system.file("testdata", "test_dlres.Rdata", package = "binman") load(trdata) testthat::with_mock( `httr::GET` = function(...) { test_llres }, `base::dir.create` = function(...) { TRUE }, `utils::unzip` = function(zipfile, ...) { zipfile }, procyml <- process_yaml(ymlfile) ) procyml ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.