如果您从 R 中使用 igraph,请使用此选项
| print.igraphHRGConsensus {igraph} | R 文档 |
共识树状图 (igraphHRGConsensus 对象) 的打印方式很简单,就是列出树状图每个内部节点的子节点
HRG consensus tree: g1 -> 11 12 13 14 15 16 17 18 19 20 g2 -> 1 2 3 4 5 6 7 8 9 10 g3 -> g1 g2
树状图的根是 g3(因为它没有传入边),它有两个子组,g1 和 g2。
## S3 method for class 'igraphHRGConsensus'
print(x, ...)
x |
要打印的 |
... |
忽略。 |
不可见地输入对象,以允许方法链。
其他分层随机图函数:consensus_tree(), fit_hrg(), hrg-methods, hrg_tree(), hrg(), predict_edges(), print.igraphHRG(), sample_hrg()