graphLayout(Rgraphviz)
graphLayout()所属R语言包:Rgraphviz
A function to layout graph locations
一个以功能布局图的位置
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function will take an object of class Ragraph and will perform a libgraph layout on the graph locations.
此功能将采取类Ragraph“将执行一个图表上的位置libgraph布局的对象。
用法----------Usage----------
graphLayout(graph, layoutType=graph@layoutType)
参数----------Arguments----------
参数:graph
An object of type Ragraph
对象的类型Ragraph
参数:layoutType
layout algorithm to use
使用的布局算法
Details
详情----------Details----------
If the graph has already been laid out, this function merely returns its parameter. Otherwise, it will perform a libgraph layout and retrieve the appropriate location information.
如果图已经奠定了,这个函数只是返回它的参数。否则,它会执行libgraph布局和检索适当的位置信息。
值----------Value----------
A laid out object of type Ragraph.
奠定了对象的类型Ragraph。
作者(S)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
agopen
agopen
举例----------Examples----------
V <- letters[1:10]
M <- 1:4
g1 <- randomGraph(V, M, .2)
z <- agopen(g1,"foo",layout=FALSE)
x <- z
a <- graphLayout(z)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|