GetListObject {hivPlatform} | R Documentation |
Returns list object stored as text in R script file.
GetListObject( fileName, section = NULL, includeFileName = TRUE, envir = parent.frame() )
fileName |
Name of list file. Required. |
section |
Name of section of the list to return. If not specified, then the whole specification is returned, otherwise only the specified section. Optional. Default = NULL. |
includeFileName |
Logical indicating to include file name in the returned list as field "FileName". Optional. Default = TRUE. |
envir |
Environment in which the list script should be evaluated. Optional.
Default = |
List object.
## Not run: GetListObject(fileName) GetListObject(fileName, section = 'Name') GetListObject(fileName, section = 'Parameters') ## End(Not run)