graphGenerator(RBGL)
graphGenerator()所属R语言包:RBGL
Generate an undirected graph with adjustable clustering coefficient
产生一个聚类系数可调的无向图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generate an undirected graph with adjustable clustering coefficient
产生一个聚类系数可调的无向图
用法----------Usage----------
graphGenerator(n, d, o)
参数----------Arguments----------
参数:n
no. of nodes in the generated graph
没有。在生成图形的节点
参数:d
parameter for preferential attachment
参数择优
参数:o
parameter for triple generation
三重代参数
Details
详情----------Details----------
The graph generator works according to the prefential attachment rule. It also generates graphs with adjustable clustering coefficient. Parameter d specifies how many preferred edges a new node has. Parameter o limits how many triples to add to a new node.
图形发生器的工作根据的prefential附件规则。它还生成聚类系数可调的图形。参数d指定一个新的节点有多少首选的边缘。参数o限制多少三元添加到一个新的节点。
See reference for details.
有关详情,请参阅参考。
值----------Value----------
参数:no. of nodes
No. of nodes in the generated graph
在生成的图号节点
参数:no. of edges
No. of edges in the generated graph
在生成的图边号
参数:edges
Edges in the generated graph
在生成的图的边缘
作者(S)----------Author(s)----------
Li Long <li.long@isb-sib.ch>
参考文献----------References----------
Journal of Graph Algorithms and Applications, Vol. 9, No. 2 (2005).
参见----------See Also----------
clusteringCoef, transitivity, clusteringCoefAppr
clusteringCoef,传递,clusteringCoefAppr
举例----------Examples----------
n <- 20
d <- 6
o <- 3
gg <- graphGenerator(n, d, o)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|