getAll | R Documentation |
Retrieve all configuration settings
getAll(path = ".")
path |
An optional character object specifying a path. Default is the current directory. |
This functions returns all configuration settings which can be queried
in a data.frame object. The system-level functions sysconf
,
pathconf
and confstr
provide all the underlying information.
A data.frame with three colums for key, value and (source) type.
Not all keys return a value; in those cases an empty string is returned.
Type is one of path
, sys
and conf
and signals how the
value was obtained.
Dirk Eddelbuettel
getConfig
if (Sys.info()[["sysname"]] != "SunOS") {
head(getAll(), 30)
subset(getAll(), type=="path")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.