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
sessionInfo | returns an object of class "sessionInfo"
containing the elements as follows: "R.version ", "platform", "locale", "basePkgs", "otherPkgs", "loadedOnly". |
toLatex.sessionInfo | returns an object of class "Latex" corresponding to input object. |
print.sessionInfo | returns x, with the invisible flag set to prevent reprinting. |
See Also
Examples
sessionInfo()
sessionInfo(c("base", "stats"))
sesInfo <- sessionInfo("base")
print(sesInfo, locale = FALSE)