Moves all the columns of ffdf data.frames into a directory
move.ffdf( x, dir = ".", name = as.character(substitute(x)), relativepath = FALSE )
x |
|
dir |
path were all of supplied |
name |
name to be used as data.frame name |
relativepath |
If |
iris.ffdf <- as.ffdf(iris) td <- tempfile() # save the ffdf into the supplied directory save.ffdf(iris.ffdf, dir=td) # what in the directory? dir(td) #remove the ffdf from memory rm("iris.ffdf") # and reload the stored ffdf load.ffdf(dir=td) tf <- paste(tempfile(), ".zip", sep="") packed <- pack.ffdf(file=tf, iris.ffdf) #remove the ffdf from memory rm("iris.ffdf") # restore the ffdf from the packed ffdf unpack.ffdf(tf)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.