transitivity(RBGL)
transitivity()所属R语言包:RBGL
Calculate transitivity for an undirected graph
计算为一个无向图的传递
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate transitivity for an undirected graph
计算为一个无向图的传递
用法----------Usage----------
transitivity(g)
参数----------Arguments----------
参数:g
an instance of the graph class
graph类的一个实例
Details
详情----------Details----------
For an undirected graph G, let delta(v) be the number of triangles with v as a node, let tau(v) be the number of triples, i.e., paths of length 2 with v as the center node.
对于一个无向图G,让Delta(V)是编号三角形v作为一个节点,让头(V)人数的三倍,即用<路径长度为2的X>为中心节点。
Define transitivity T(G) = sum(delta(v)) / sum(tau(v)), for all v in V.
定义传递T(下G)的总和(Delta(V))/所有在五至五的总和(头(V)),
值----------Value----------
Transitivity for graph g.
及物的图g。
作者(S)----------Author(s)----------
Li Long <a href="mailto:li.long@isb-sib.ch">li.long@isb-sib.ch</a>
参考文献----------References----------
Journal of Graph Algorithms and Applications, Vol. 9, No. 2 (2005).
参见----------See Also----------
clusteringCoef, clusteringCoefAppr, graphGenerator
clusteringCoef,clusteringCoefAppr,graphGenerator
举例----------Examples----------
con <- file(system.file("XML/conn.gxl",package="RBGL"))
g <- fromGXL(con)
close(con)
tc <- transitivity(g)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|