View source: R/utility_functions.R
loadRData | R Documentation |
loadRData
imports selected object from a .RData file and returns only that object. Modified from code from stackexchange user ricardo at this link https://stackoverflow.com/questions/5577221/how-can-i-load-an-object-into-a-variable-name-that-i-specify-from-an-r-data-file
loadRData(filePath, objNameToGet = NULL)
filePath |
The path of the .RData object to load |
objNameToGet |
The name of the object to extract from the specified .RData file. If left to the default value of NULL the function will return the first object alphabetically so specify this argument if more than one object is saved within the .RData object. |
Modified from code from stackexchange user ricardo at this link https://stackoverflow.com/questions/5577221/how-can-i-load-an-object-into-a-variable-name-that-i-specify-from-an-r-data-file
An R object
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.