sessionInfo {utils} | R Documentation |
Print version information about R, the OS and attached or loaded packages.
sessionInfo(package = NULL) ## S3 method for class 'sessionInfo' print(x, locale = TRUE, ...) ## S3 method for class 'sessionInfo' toLatex(object, locale = TRUE, ...)
package |
a character vector naming installed packages, or |
x |
an object of class |
object |
an object of class |
locale |
show locale information? |
... |
currently not used. |
An object of class "sessionInfo"
which has print
and
toLatex
methods. This is a list with components
R.version |
a list, the result of calling |
platform |
a character string describing the platform R was built under. Where sub-architectures are in use this is of the form platform/sub-arch (nn-bit). |
running |
a character string describing the OS and version which it is running under (as distinct from built under). This attempts to name a Linux distribution and give the OS name on an Apple Mac. |
matprod |
a character string, the result of calling
|
BLAS |
a character string, the result of calling
|
LAPACK |
a character string, the result of calling
|
locale |
a character string, the result of calling
|
basePkgs |
a character vector of base packages which are attached. |
otherPkgs |
(not always present): a character vector of other attached packages. |
loadedOnly |
(not always present): a named list of the results of
calling |
The information on ‘loaded’ packages and namespaces is the current version installed at the location the package was loaded from: it can be wrong if another process has been changing packages during the session.
How OSes identify themselves and their versions can be arcane: where
possible running
uses a human-readable form.
sessionInfo() toLatex(sessionInfo(), locale = FALSE)