allnames(base)
allnames()所属R语言包:base
Find All Names in an Expression
查找表达式中的所有名称
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return a character vector containing all the names which occur in an expression or call.
包含所有的名字,发生在一个表达式或调用返回一个字符向量。
用法----------Usage----------
all.names(expr, functions = TRUE, max.names = -1L, unique = FALSE)
all.vars(expr, functions = FALSE, max.names = -1L, unique = TRUE)
参数----------Arguments----------
参数:expr
an expression or call from which the names are to be extracted.
从它的名字是一个表达式或调用被提取。
参数:functions
a logical value indicating whether function names should be included in the result.
一个逻辑值,指明函数名是否应包括在结果中。
参数:max.names
the maximum number of names to be returned. -1 indicates no limit (other than vector size limits).
要返回的名称的最大数目。 -1表示没有限制(矢量大小限制以外)。
参数:unique
a logical value which indicates whether duplicate names should be removed from the value.
一个逻辑值,这表明重复的名称是否应当从值中删除。
Details
详情----------Details----------
These functions differ only in the default values for their arguments.
这些功能的区别仅在他们的论点的默认值。
值----------Value----------
A character vector with the extracted names.
与特征向量提取的名称。
参见----------See Also----------
substitute to replace symbols with values in an expression.
substitute,以取代在一个表达式的值的符号。
举例----------Examples----------
all.names(expression(sin(x+y)))
all.names(quote(sin(x+y))) # or a call[或一个电话]
all.vars(expression(sin(x+y)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|