sessionInfo {utils} | R Documentation |
Print version information about R 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 a print
method. This is a list with components
R.version |
a list, the result of calling |
platform |
a character string describing the platform. For recent versions where sub-architectures are in use this is of the form platform/sub-arch (nn-bit). |
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.
sessionInfo() toLatex(sessionInfo(), locale=FALSE)