move_to | R Documentation |
Move or copy a disk.frame to another location
move_to(df, outdir, ..., copy = FALSE) copy_df_to(df, outdir, ...)
df |
The disk.frame |
outdir |
The new location |
... |
NOT USED |
copy |
Merely copy and not move |
a disk.frame
cars.df = as.disk.frame(cars) cars_copy.df = copy_df_to(cars.df, outdir = tempfile(fileext=".df")) cars2.df = move_to(cars.df, outdir = tempfile(fileext=".df")) # clean up delete(cars_copy.df) delete(cars2.df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.