sourceutils(utils)
sourceutils()所属R语言包:utils
Source Reference Utilities
来源参考公用事业
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions extract information from source references.
这些功能提取信息从源代码引用。
用法----------Usage----------
getSrcFilename(x, full.names = FALSE, unique = TRUE)
getSrcDirectory(x, unique=TRUE)
getSrcref(x)
getSrcLocation(x, which = c("line", "column", "byte", "parse"),
first = TRUE)
参数----------Arguments----------
参数:x
An object (typically a function) containing source references.
包含源引用的对象(通常是一个函数)。
参数:full.names
Whether to include the full path in the filename result.
是否包括完整路径的文件名中的结果。
参数:unique
Whether to list only unique filenames/directories.
是否只有唯一的文件名/目录列出。
参数:which
Which part of a source reference to extract.
这部分提取源参考。
参数:first
Whether to show the first (or last) location of the object.
是否显示对象的位置的第一个(或最后)。
Details
详情----------Details----------
Each statement of a function will have its own source reference if options(keep.source=TRUE). These functions retrieve all of them.
每一个函数的声明将有其自己的源参考,如果options(keep.source=TRUE)。所有这些功能检索。
The components are as follows:
组件如下:
line The line number where the object starts or ends.
行的行号对象的开始或结束。
column The column number where the object starts or ends.
列的列数对象的开始或结束。
byte As for "column", but counting bytes, which may
字节"column",但计数字节,这可能
parse As for "line", but this ignores #line directives.
解析"line",但忽略#line指令。
值----------Value----------
getSrcFilename and getSrcDirectory return character vectors holding the filename/directory.
getSrcFilename和getSrcDirectory返回字符向量持有的文件名/目录。
getSrcref returns a list of "srcref" objects or NULL if there are none.
getSrcref返回"srcref"对象或NULL的名单,“如果没有这样的。”
getSrcLocation returns an integer vector of the requested type of locations.
getSrcLocation地点的请求类型返回一个整数向量。
参见----------See Also----------
srcref
srcref
举例----------Examples----------
fn <- function(x) {
x + 1 # A comment, kept as part of the source[评论,保持源的一部分]
}
# Show the temporary file directory[显示临时文件目录]
# where the example was saved[被保存的例子]
getSrcDirectory(fn)
getSrcLocation(fn, "line")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|