clusterData-methods(Rgraphviz)
clusterData-methods()所属R语言包:Rgraphviz
Get and set attributes for a cluster of an Ragraph object
获取和设置属性为集群一个Ragraph对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Attributes of a graph can be accessed using clusterData. There's no default attributes for clusters. The attributes must be defined using graphDataDefaults.
图形的属性,可以访问使用clusterData。有没有集群的默认属性。属性必须定义使用graphDataDefaults。
用法----------Usage----------
clusterData(self, cluster, attr)
clusterData(self, cluster, attr) <- value
参数----------Arguments----------
参数:self
A Ragraph-class instance
一个Ragraph-class实例
参数:cluster
cluster number
簇号
参数:attr
A character vector of length one specifying the name of a cluster attribute
一个character长度为一向量指定群集属性的名称
参数:value
A character vector to store as the attribute value
一个的character向量来存储属性值
作者(S)----------Author(s)----------
Li Long <li.long@isb-sib.ch>
举例----------Examples----------
library(graph)
library(Rgraphviz)
g1_gz <- gzfile(system.file("GXL/graphExample-01.gxl.gz",package="graph"), open="rb")
g11_gz <- gzfile(system.file("GXL/graphExample-11.gxl.gz",package="graph"), open="rb")
g1 <- fromGXL(g1_gz)
g11 <- fromGXL(g11_gz)
g1_11 <- join(g1, g11)
sgl <- vector(mode="list", length=2)
sgl[[1]] <- list(graph=g1, cluster=TRUE)
sgl[[2]] <- list(graph=g11, cluster=TRUE)
ng <- agopenSimple(g1_11, "tmpsg", subGList=sgl)
clusterData(ng, 1, c("bgcolor")) <- c("blue")
clusterData(ng, 2, c("bgcolor")) <- c("red")
toFile(ng, layoutType="dot", filename="g1_11_dot.ps", fileType="ps")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|