.rda functions: listRDA, objRDA | R Documentation |
Utility functions to read the names and load the objects from an .rda file, into an R list.
listRDA(.filename)
objRDA(.filename)
.filename |
The path to the file where the R object is saved. |
Files with the extension .rda are routinely created using the base function
save()
.
The function listRDA()
loads the object(s) from the .rda file into a list,
preserving the object names in the list components.
The .rda file can naturally be loaded with the base load()
function,
but in doing so the containing objects will overwrite any existing objects with the same names.
The function objRDA()
returns the names of the objects from the .rda file.
A list, containing the objects from the loaded .rda file.
Adrian Dusa
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.