load_rdata | R Documentation |
load_rdata
Load processed data (.rda format) using a function that assigns it to a specific variable (so you don't have to guess what the loaded variable name is).
load_rdata(fileName)
fileName |
Name of the file to load. |
Data object.
tmp <- tempfile()
save(mtcars, file = tmp)
mtcars2 <- load_rdata(tmp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.