mergeOutEdges(RedeR)
mergeOutEdges()所属R语言包:RedeR
Merge out-edges between connected containers and transfers edges from nodes to containers.
合并的边缘之间的连接容器和容器节点的传输边缘。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Method to assign out-edges to containers in an active RedeR session. This method transfers edges from nodes to the respective containers.
分配出边积极瑞德会议容器的方法。这种方法从节点转移到各自的容器的边缘。
用法----------Usage----------
mergeOutEdges(obj,...)
参数----------Arguments----------
参数:obj
Object of RedPort Class.
对象的RedPort类。
参数:...
Additional arguments passed to RedeR application.
额外的参数传递给瑞德应用。
Details
详情----------Details----------
Additional arguments:
额外的参数:
rescale Logical value. Whether to rescale the out-edge width to fit container size limits; if false, it will run a simple sum (default=TRUE).
重新调整逻辑值。是否要重新调整出边的宽度,以适应容器的大小限制,如果是假的,它会运行一个简单的总和(默认= TRUE),。
lb Custom lower bound to rescale edge width (default=NULL) <numerics>.
磅定制降低势必重新调整边缘的宽度(默认值= NULL)<numerics>。
ub Custom upper bound to rescale edge width between containers (default=NULL) <numerics>.
UB自定义上限容器(默认值= NULL)<numerics>之间的重新调整边缘宽度。
nlev Number of levels to be merged in the hierarchy (default=1) <integer>.
的nlev数的合并层次结构中的(默认值= 1)<整数>的水平。
值----------Value----------
Add/change edge assigments.
新增/改变边缘assigments。
注意----------Note----------
Prior calling this method invoke RedeR application via XML-RPC server (i.e. 'calld').
之前调用此方法调用瑞德应用通过XML-RPC服务器(即“calld)。
作者(S)----------Author(s)----------
Mauro Castro
参见----------See Also----------
RedPort
RedPort
举例----------Examples----------
rdp <- RedPort('MyPort')
el<-matrix(c("n1","n2","n1","n3","n1","n4","n2","n5","n2","n6","n2","n7"), ncol=2, byrow=TRUE)
g <- graph.edgelist(el)
## Not run: [#无法运行:]
calld(rdp)
addGraph( rdp, g, layout.kamada.kawai(g) )
nestNodes( rdp, c("n1","n2") )
mergeOutEdges(rdp)
updateGraph(rdp)
## End(Not run) [#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|