setNames(stats)
setNames()所属R语言包:stats
Set the Names in an Object
设置对象的名称
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a convenience function that sets the names on an object and returns the object. It is most useful at the end of a function definition where one is creating the object to be returned and would prefer not to store it under a name just so the names can be assigned.
这是一个方便的功能设置对象的名称,并返回对象。这是最有用的,其中一个是创建要返回的对象,宁愿不存储它只是一个名字下,这样的名字可以被分配一个函数定义结束。
用法----------Usage----------
setNames(object, nm)
参数----------Arguments----------
参数:object
an object for which a names attribute will be meaningful
这names属性将是有意义的对象
参数:nm
a character vector of names to assign to the object
特征向量的名称分配给该对象
值----------Value----------
An object of the same sort as object with the new names assigned.
相同的排序为对象object与分配的新名称。
作者(S)----------Author(s)----------
Douglas M. Bates and Saikat DebRoy
参见----------See Also----------
unname for removing names.
unname删除名称。
举例----------Examples----------
setNames( 1:3, c("foo", "bar", "baz") )
# this is just a short form of[这只是一个短期的形式]
tmp <- 1:3
names(tmp) <- c("foo", "bar", "baz")
tmp
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|