sessionInfoX {sfsmisc} | R Documentation |
Collect (and print) information about the current R session and
environment, using sessionInfo()
and more mostly
low-level and platform dependent information.
sessionInfoX(pkgs = NULL, list.libP = FALSE, extraR.env = TRUE) ## S3 method for class 'sessionInfoX' print(x, locale = TRUE, RLIBS = TRUE, Renv = TRUE, ...)
pkgs |
an optional |
list.libP |
a logical indicating if for all
|
extraR.env |
logical indicating if all environment
variables should be recorded which start with |
x |
typically the result of |
locale |
logical, passed to |
RLIBS |
logical indicating if the information about R_LIBS should be printed. |
Renv |
logical indicating if the information about R environment variables should be printed. |
... |
passed to |
an object of S3 class "sessionInfoX"
, a list
with components (there may be more, experimental and not yet listed here):
sInfo |
simply the value of |
sysInf |
the value of |
capabilities |
the value of |
extSoft |
for R 3.2.0 and newer, the value of |
LAPACK |
for R 3.0.3 and newer, the value of |
pcre |
for R 3.1.3 and newer, the value of |
pkgDescr |
If |
libPath |
the value of |
RLIBS |
a |
n.RLIBS |
simply a |
R.env |
a named character vector with the “important” R
environment variables |
xR.env |
if |
Martin Maechler, December 2015
sessionInfo
,
.libPaths
, R.version
, Sys.getenv
.
six0 <- sessionInfoX() sixN <- sessionInfoX("nlme", list.libP = TRUE) sixN # -> print() method for "sessionInfoX" names(sixN) str(sixN, max = 1)# outline of lower-level structure str(sixN$pkgDescr) # list with one component "nlme"