as.function(base)
as.function()所属R语言包:base
Convert Object to Function
将对象转换运作
译者:生物统计家园网 机器人LoveR
描述----------Description----------
as.function is a generic function which is used to convert objects to functions.
as.function是一个通用的功能,它是用来转换函数的对象。
as.function.default works on a list x, which should contain the concatenation of a formal argument list and an expression or an object of mode "call" which will become the function body. The function will be defined in a specified environment, by default that of the caller.
as.function.default列表x,其中应包含串联一个正式的参数列表和一个表达式或一个对象的模式"call"这将成为函数体。该函数将在指定的环境定义,默认情况下,来电。
用法----------Usage----------
as.function(x, ...)
## Default S3 method:[默认方法]
as.function(x, envir = parent.frame(), ...)
参数----------Arguments----------
参数:x
object to convert, a list for the default method.
反对转换,默认的方法列表。
参数:...
additional arguments, depending on object
额外的参数,对象取决于
参数:envir
environment in which the function should be defined
应定义环境中的功能
值----------Value----------
The desired function.
所需的功能。
注意----------Note----------
For ancient historical reasons, envir = NULL uses the global environment rather than the base environment. Please use envir = globalenv() instead if this is what you want, as the special handling of NULL may change in a future release.
对于古代历史的原因,envir = NULL使用全球环境,而不是基地环境。请使用envir = globalenv()而是如果这是你想要什么,作为NULL在未来的版本可能会改变的特殊处理。
作者(S)----------Author(s)----------
Peter Dalgaard
参见----------See Also----------
function; alist which is handy for the construction of argument lists, etc.
function;alist这是很方便的施工参数列表等。
举例----------Examples----------
as.function(alist(a=,b=2,a+b))
as.function(alist(a=,b=2,a+b))(3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|