Created
March 3, 2016 13:50
-
-
Save cszang/66667d3beafdd7b9550e to your computer and use it in GitHub Desktop.
source R dumpfile in win R session
This file contains 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
rs <- function() { | |
dumpfile <- "~/.rdump" | |
dump <- readLines(dumpfile) | |
cat(paste0("---> ", dump[1], " ... ", tail(dump, 1), "\n")) | |
source(dumpfile, echo = TRUE) | |
system("rtobottom") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment