utils (version 3.1.0)

sessionInfo: Collect Information About the Current R Session

Description

Print version information about R and attached or loaded packages.

Usage

sessionInfo(package = NULL) "print"(x, locale = TRUE, ...) "toLatex"(object, locale = TRUE, ...)

Arguments

package
a character vector naming installed packages, or NULL (the default) meaning all attached packages.
x
an object of class "sessionInfo".
object
an object of class "sessionInfo".
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 R.Version().
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 Sys.getlocale().
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 packageDescription on packages whose namespaces are loaded but are not attached.

See Also

R.version