Last active
December 24, 2015 13:29
-
-
Save bradurani/6805175 to your computer and use it in GitHub Desktop.
R file commands
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
save.image() # save to .RData | |
load(".RData") | |
save.image(file="workspace21.RData") #save data to binary | |
load("workspace21.RData"); | |
save.image() | |
savehistory() #save to .RHistory in current directory | |
savehistory(file="workspace.RHistory"); #save history to file | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment