sessionInfo(utils)
sessionInfo()所属R语言包:utils
Collect Information About the Current R Session
关于当前的R会话收集信息
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Print version information about R and attached or loaded packages.
打印有关R和附加或装包的版本信息。
用法----------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 NULL (the default) meaning all attached packages.
命名字符向量安装的软件包,或NULL(默认)意味着所有附加软件包。
参数:x
an object of class "sessionInfo".
对象类"sessionInfo"。
参数:object
an object of class "sessionInfo".
对象类"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
一个对象类"sessionInfo",有一个print方法。这是一个组件列表
参数:R.version
a list, the result of calling R.Version().
一个列表,调用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).
一个字符串,描述了平台。对于子架构中使用的最新版本,这是形式platform/sub-arch (nn-bit)。
参数:locale
a character string, the result of calling Sys.getlocale().
一个字符串,调用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.
(并不总是存在):指定一个调用的结果列表packageDescription包的加载,但没有附加的命名空间。
参见----------See Also----------
R.version
R.version
举例----------Examples----------
sessionInfo()
toLatex(sessionInfo(), locale=FALSE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|