export_RData | R Documentation |
Export an R object as .RData file
export_RData(object, out.dir = tempdir(), out.nm = class(object))
object |
An R object. |
out.dir |
The path to the output directory. Default: the working directory |
out.nm |
The output filename (with or without '.RData' ending). Default: the class of |
NULL
if(interactive()){
df <- data.frame('A' = seq(1:10), 'B' = rev(seq(1:10)))
export_RData(df)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.