builtins(base)
builtins()所属R语言包:base
Returns the Names of All Built-in Objects
返回所有内置对象的名称
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return the names of all the built-in objects. These are fetched directly from the symbol table of the R interpreter.
返回的所有内置对象的名称。这些都是直接从提取的R解释的符号表。
用法----------Usage----------
参数----------Arguments----------
参数:internal
a logical indicating whether only "internal" functions (which can be called via .Internal) should be returned.
逻辑指示是否只有“内部”的功能(可通过.Internal叫)应退还。
Details
详情----------Details----------
builtins() returns an unsorted list of the objects in the symbol table, that is all the objects in the base environment. These are the built-in objects plus any that have been added subsequently when the base package was loaded. It is less confusing to use ls(baseenv(), all=TRUE).
builtins()返回一个符号表中的对象,这是基地环境中的所有对象的无序列表。这些内置对象加任何已添加随后基包被载入时。使用ls(baseenv(), all=TRUE)这是不太混乱。
builtins(TRUE) returns an unsorted list of the names of internal functions, that is those which can be accessed as .Internal(<VAR>foo</VAR>(args ...)) for <VAR>foo</VAR> in the list.
builtins(TRUE)返回一个无序的内部功能的名称列表,就是那些可以访问.Internal(<VAR>foo</VAR>(args ...))<VAR>富</无功>在列表中。
值----------Value----------
A character vector.
字符向量。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|