with_wd | R Documentation |
Temporarily evaluate an expression in a directory, then set the directory back to the original.
with_wd(dir, expr)
dir |
a directory to perform an expression within. |
expr |
expression to evaluate. |
See here: http://plantarum.ca/code/setwd-part2/
Tyler Smith, contributed to regionReport by David Robinson https://github.com/dgrtwo
## Create a directory called 'hola' and then check that it exists
with_wd(tempdir(), {
dir.create("hola", showWarnings = FALSE)
file.exists("hola")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.