对有向图中的二元组进行分类。测量每对顶点之间的关系。它可以有三种状态:互惠、非对称或不存在。
参考文献
Holland, P.W. 和 Leinhardt, S. 一种检测社会关系数据结构的方法。美国社会学杂志,76,492–513。1970。
Wasserman, S. 和 Faust, K. 社会网络分析:方法和应用。 剑桥:剑桥大学出版社。1994。
参见
triad_census()
用于相同的分类,但使用三元组。
其他图 motif:count_motifs()
, motifs()
, sample_motifs()
作者
Gabor Csardi csardi.gabor@gmail.com
示例
g <- sample_pa(100)
dyad_census(g)
#> $mut
#> [1] 0
#>
#> $asym
#> [1] 99
#>
#> $null
#> [1] 4851
#>