as.environment(base)
as.environment()所属R语言包:base
Coerce to an Environment Object
强制到一个环境对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A generic function coercing an R object to an environment. A number or a character string is converted to the corresponding environment on the search path.
一个泛型函数,一个R对象environment,胁迫。搜索路径上的一个数字或一个字符串转换为相应的环境。
用法----------Usage----------
as.environment(x)
参数----------Arguments----------
参数:x
an R object to convert. If it is already an environment, just return it. If it is a number, return the environment corresponding to that position on the search list. If it is a character string, match the string to the names on the search list. If it is a list, the equivalent of list2env(x, parent=emptyenv()) is returned. If is.object(x) is true and it has a class for which an as.environment method is found, that is used.
一个R对象的转换。如果它已经是一个环境,刚刚返回。如果它是一个数字,返回相应的环境,在搜索列表中的位置。如果它是一个字符串,字符串匹配搜索列表的名称。如果它是一个列表,相当于,list2env(x, parent=emptyenv())的返回。如果is.object(x)的是真实的,它有一个class一个发现as.environment方法,是用。
值----------Value----------
The corresponding environment object.
相应的环境对象。
注意----------Note----------
This is a primitive function.
这是一种原始的功能。
作者(S)----------Author(s)----------
John Chambers
参见----------See Also----------
environment for creation and manipulation, search; list2env.
environment创建和操纵,searchlist2env。
举例----------Examples----------
as.environment(1) ## the global environment[#全球环境]
identical(globalenv(), as.environment(1)) ## is TRUE[#是属实]
try( ## <<- stats need not be attached[#<< - 统计不需要附加]
as.environment("package:stats"))
ee <- as.environment(list(a = "A", b = pi, ch = letters[1:8]))
ls(ee) # names of objects in ee[EE对象的名称]
utils::ls.str(ee)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|