fruchterman_reingold(VBLPCM)
fruchterman_reingold()所属R语言包:VBLPCM
Perform Fruchterman-Reingold layout of a network in 2 or more dimensions.
执行FRUCHTERMAN-莱因戈尔德在2个或更多的维度网络布局。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This was written and incorporated into the VBLPCM package because the Fruchterman-Reingold routine in the network package only works in two dimensions.
这是书面和纳入的VBLPCM包的,因为FRUCHTERMAN-莱因戈尔德常规的网络数据包只能在两个方面。
用法----------Usage----------
volume=N*(D-1))
参数----------Arguments----------
参数:net
network object on which to perform Fruchterman-Reingold layout.
其中执行FRUCHTERMAN-莱因戈尔德布局网络对象。
参数:D
Desired dimension of the space in which to lay out the network.
所需的尺寸的空间,在其中网络奠定满分。
参数:steps
Number of desired iterations.
所需的迭代数目。
参数:repulserad
The radius at which repulsion and attraction of linked nodes are equal.
该半径的排斥和吸引的链接节点都是平等的。
参数:m
The maximum change in position per iteration.
每次迭代的最大变化量的位置。
参数:volume
The volume of space within which to position the nodes.
内的空间体积,定位节点。
值----------Value----------
An N*D matrix of coordinates.
一个N * D的坐标矩阵。
(作者)----------Author(s)----------
Michael Salter-Townshend
参见----------See Also----------
log_like_forces
log_like_forces
实例----------Examples----------
### 2D example[##2D的例子]
### load the aids blogs dataset[##加载艾滋病的博客数据集]
data(aids)
### perform the Fruchterman-Reingold layout[##执行FRUCHTERMAN莱因戈尔德布局]
X<-fruchterman_reingold(aids.net, D=2, steps=1e3)
### plot the results[##图的结果]
plot(X)
### 3D example[##3D的例子]
### load the aids blogs dataset[##加载艾滋病的博客数据集]
data(aids)
### perform the Fruchterman-Reingold layout[##执行FRUCHTERMAN莱因戈尔德布局]
X<-fruchterman_reingold(aids.net, D=3, steps=1e3)
### Not run[##不运行]
### plot the results in 3D[##绘制在3D中的结果]
# library(rgl)[库(RGL)]
# plot3d(X)[PLOT3D(X)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|