Description Usage Arguments See Also Examples
move.ffdf
saves all columns into the given dir
. Each column
is stored as with filename <ffdfname>$<colname>.ff.
If you want to store the data for an other session please use save.ffdf
or pack.ffdf
1 2 3 4 5 6 | 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 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.