zpackages(base)
zpackages()所属R语言包:base
Listing of Packages
列出包的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
.packages returns information about package availability.
.packages返回包可用性的信息。
用法----------Usage----------
.packages(all.available = FALSE, lib.loc = NULL)
参数----------Arguments----------
参数:all.available
logical; if TRUE return a character vector of all available packages in lib.loc.
逻辑;如果TRUE返回一个lib.loc所有可用的软件包的特征向量。
参数:lib.loc
a character vector describing the location of R library trees to search through, or NULL. The default value of NULL corresponds to .libPaths().
字符向量描述R库树的位置,通过搜索,或NULL。默认值NULL.libPaths()。
Details
详情----------Details----------
.packages() returns the names of the currently attached packages invisibly whereas .packages(all.available = TRUE) gives (visibly) all packages available in the library location path lib.loc.
.packages()返回当前连接的包的名称无形而.packages(all.available = TRUE)给人(明显)的所有包库的位置路径lib.loc。
For a package to be regarded as being "available" it must have valid metadata (and hence be an installed package). However, this will report a package as available if the metadata does not match the directory name: use find.package to confirm that the metadata match or installed.packages for a much slower but more comprehensive check of "available" packages.
对于被视为是“可用”的软件包,它必须有有效的元数据(因此是一个安装包)。然而,这将报告可用包元数据不匹配目录名,如果使用find.package确认的元数据匹配或installed.packages为可用慢得多,但更全面的检查包。
值----------Value----------
A character vector of package base names, invisible unless all.available = TRUE.
一个包基地的名称,除非all.available = TRUE无形的特征向量。
作者(S)----------Author(s)----------
R core;
Guido Masarotto for the <code>all.available=TRUE</code> part of
<code>.packages</code>.
参见----------See Also----------
library, .libPaths, installed.packages.
library,.libPaths,installed.packages。
举例----------Examples----------
(.packages()) # maybe just "base"[也许只是“基地”]
.packages(all.available = TRUE) # return all available as character vector[返回所有可用的字符向量]
require(splines)
(.packages()) # "splines", too[“样条线”,也]
detach("package:splines")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|