| sessionInfo {utils} | R Documentation |
Collect Information About the Current R Session
Description
Print version information about R and attached or loaded packages.
Usage
sessionInfo(package = NULL)
## S3 method for class 'sessionInfo'
print(x, locale = TRUE, ...)
## S3 method for class 'sessionInfo'
toLatex(object, locale = TRUE, ...)
Arguments
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. |
Value
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 |
See Also
R.version
Examples
sessionInfo()
toLatex(sessionInfo(), locale=FALSE)