List Objects - extensions
Usage
ls_dataframe(pattern, all.names = FALSE, envir = parent.frame())
ls_function(pattern, all.names = FALSE, envir = parent.frame())
ls_object(pattern, all.names = FALSE, envir = parent.frame())Arguments
- pattern
an optional regular expression. Only names matching
patternare returned.glob2rxcan be used to convert wildcard patterns to regular expressions.- all.names
a logical value. If
TRUE, all object names are returned. IfFALSE, names which begin with a . are omitted.- envir
an alternative argument to
namefor specifying the environment. Mostly there for back compatibility.