vignetteDepends(tools)
vignetteDepends()所属R语言包:tools
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a vignette name, will create a DependsList object that reports information about the packages the vignette depends on.
鉴于一个小品的名字,将创建一个DependsList这报告包暗角取决于信息的对象。
用法----------Usage----------
vignetteDepends(vignette, recursive = TRUE, reduce = TRUE,
local = TRUE, lib.loc = NULL)
参数----------Arguments----------
参数:vignette
The path to the vignette source
到暗角源路径
参数:recursive
Whether or not to include indirect dependencies
是否包括间接依赖
参数:reduce
Whether or not to collapse all sets of dependencies to a minimal value
是否折叠所有依赖极小值
参数:local
Whether or not to search only locally
是否只能在本地搜索
参数:lib.loc
What libraries to search in locally
哪些图书馆在本地搜索
Details
详情----------Details----------
If recursive is TRUE, any package that is specified as a dependency will in turn have its dependencies included (and so on), these are known as indirect dependencies. If recursive is FALSE, only the dependencies directly named by the vignette will be used.
如果recursive是TRUE,任何被指定为一个依赖包会反过来有它的依赖(等),这些被称为间接依赖。如果recursive是FALSE,只有直接的插曲命名的依赖将使用。
If local is TRUE, the system will only look at the user's local machine and not online to find dependencies.
如果local是TRUE,系统只会看用户的本地计算机,而不是网上找到依赖。
If reduce is TRUE, the system will collapse the fields in the DependsList object such that a minimal set of dependencies are specified (for instance if there was foo, foo (>= 1.0.0), foo (>= 1.3.0, it would only return foo (>= 1.3.0)).
如果reduce是TRUE,系统就会崩溃在DependsList对象领域的依赖最少的一组被指定(例如,如果有foo, foo (>= 1.0.0), foo (>= 1.3.0,它将只返回foo (>= 1.3.0))。
值----------Value----------
An object of class "DependsList".
对象类"DependsList"。
作者(S)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
pkgDepends
pkgDepends
举例----------Examples----------
## This may not be installed[#这可能无法安装]
gridEx <- system.file("doc", "grid.Rnw", package = "grid")
vignetteDepends(gridEx)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|