Textual Serialization
Write object into file
data <- data.frame(a=1, b=2)
dput(data, file="data.R")Read object from file
newData <- dget("data.R")Reading and writting multiple objects
Last updated