shortnames<-(RnavGraph)
shortnames<-()所属R语言包:RnavGraph
Modify the shortnames of a NG_data object.
修改的NG_data对象的shortnames。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Shortnames are useful to reduce the node names of navigation graphs. The node names of navigation graphs are either linked with the names or the shortnames of the NG_data object.
Shortnames是有用的导航图,以减少节点的名称。与的名称或shortnames,的NG_data对象链接的导航图中的节点名称。
用法----------Usage----------
shortnames(x) <- value
参数----------Arguments----------
参数:x
NG_data object.
NG_data对象。
参数:value
Vector of stings.
矢量蜇伤。
(作者)----------Author(s)----------
Adrian Waddell and Wayne Oldford
参见----------See Also----------
navGraph, ng_data
navGraph,ng_data
实例----------Examples----------
## Define a NG_data object[#定义一个NG_data的对象]
ng.iris <- ng_data(name = "iris", data = iris[,1:4])
## Display shortnames[#显示shortnames功能]
shortnames(ng.iris) ## no shortnames defined yet[#定义还没有shortnames]
## Modify the shortnames[#修改的shortnames。]
shortnames(ng.iris) <- c("sL","sW","pL","pW")
## Display updated shortnames[#显示最新shortnames。]
shortnames(ng.iris) ## no shortnames defined yet[#定义还没有shortnames]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|