objNameToList(tkWidgets)
objNameToList()所属R语言包:tkWidgets
Convert Object Names to List of Lists with (name, object) Pairs
转换对象名称列表的列表(名称,对象)对
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function supports objectBrowser by converting a vector of selected object names to a list of lists with object names and the corresponding objects.
此功能支持objectBrowser矢量转换对象的名称和相应的对象的选定对象名称的列表。
用法----------Usage----------
objNameToList(objNames, env)
参数----------Arguments----------
参数:objNames
character vector giving the names of objects.
特征向量对象的名称。
参数:env
an R environment where R objects are stored
R环境R对象存储
Details
详情----------Details----------
Each list in the list that is going to be returned contains a name for the object and the real value of the object. If the object name is a package name, the contents of the package will be the value associated with the package name.
每次在将要返回的列表,列表中包含对象的名称和对象的实际价值。如果该对象的名字是包名,包的内容将包名关联的值。
值----------Value----------
A list of lists each with a name and an obj component.
每个name和obj组件的列表列表。
作者(S)----------Author(s)----------
Jianhua (John) Zhang
参见----------See Also----------
objectBrowser
objectBrowser
举例----------Examples----------
# Create two R objects[创建两个R对象]
obj1 <- c("aaa", "bbb", "ccc")
env1 <- new.env(parent = baseenv())
# Get a list containing the two objects[得到一个列表,其中包含两个对象]
nl <- objNameToList(c("obj1", "env1"), parent.frame())
str(nl)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|