sessionInfo
Collect Information About the Current R Session

Description

Collects information about the current R session and S3 methods of class "sessionInfo".

Usage

sessionInfo(package = NULL)

## S3 method for class 'sessionInfo':
print(x, locale = TRUE, ...) 

Arguments

package a vector of character strings indicating all attached packages (the default) and the installed packages.
x an object of class "sessionInfo".
locale a logical value. If TRUE (the default), displays the information on locale.
... additional arguments to be passed to or from future functions.

Details

Displays version information, platform information, locale-specific information, a list of the attached base packages, and a list of the packages loaded via the namespace but not attached.
toLatex.sessionInfo converts an object of class "sessionInfo" to an object of class Latex.
object must be an object of class "sessionInfo".
Value
sessionInforeturns an object of class "sessionInfo" containing the elements as follows: "R.version ", "platform", "locale", "basePkgs", "otherPkgs", "loadedOnly".
toLatex.sessionInforeturns an object of class "Latex" corresponding to input object.
print.sessionInforeturns x, with the invisible flag set to prevent reprinting.
See Also
R.version, Sys.getlocale.
Examples
sessionInfo()
sessionInfo(c("base", "stats"))
sesInfo <- sessionInfo("base")
print(sesInfo, locale = FALSE)
Package utils version 6.0.0-69
Package Index