mutuality(sna)
mutuality()所属R语言包:sna
Find the Mutuality of a Graph
寻找互补的图形
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the mutuality scores of the graphs indicated by g in dat.
返回的相互分数的图形表示g中dat。
用法----------Usage----------
mutuality(dat, g=NULL)
参数----------Arguments----------
参数:dat
one or more input graphs.
一个或多个输入图表。
参数:g
a vector indicating which elements of dat should be analyzed; by default, all graphs are included.
一个矢量元素dat应分析默认情况下,所有的图形。
Details
详细信息----------Details----------
The mutuality of a digraph G is defined as the number of complete dyads (i.e., i<->j) within G. (Compare this to dyadic reciprocity, the fraction of dyads within G which are symmetric.) Mutuality is commonly employed as a measure of reciprocal tendency within the p* literature; although mutuality can be very hard to interpret in practice, it is much better behaved than many alternative measures.
的图G的相互性被定义为完整的二价基的数目(即,< - > j)条内G.(与此相比,二进互惠,馏分G的内是对称的二价基。)互动 - 通常用作衡量相互倾向在p *文学,虽然的相互可以是非常难以解释在实践中,这是很更好的表现比许多其他的措施。
值----------Value----------
One or more mutuality scores
一个或多个相互分数
(作者)----------Author(s)----------
Carter T. Butts <a href="mailto:buttsc@uci.edu">buttsc@uci.edu</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
#Create some random graphs[创建一些随机图]
g<-rgraph(15,3)
#Get mutuality and reciprocity scores[互利和互惠的成绩]
mutuality(g)
grecip(g) #Compare with mutuality[与相互比较]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|