Last active
September 1, 2017 16:16
-
-
Save franperezlopez/362b2d4e1a50ea0f6cd5a0e03240a97c to your computer and use it in GitHub Desktop.
rMarkdown save document environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```{r} | |
# save document's environment (replaces existing one) | |
save.image(file="housePrices.rmd.RData") | |
# archive (optional) | |
save.image(file=paste0("housePrices_", format(Sys.time(),"%d%m%y_%H%M"), ".rmd.RData")) | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment