Skip to content

Instantly share code, notes, and snippets.

@bradurani
Last active December 24, 2015 13:29
Show Gist options
  • Save bradurani/6805175 to your computer and use it in GitHub Desktop.
Save bradurani/6805175 to your computer and use it in GitHub Desktop.
R file commands
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