make_full_citation_graph()
创建一个完整的引用图。这是一个有向图,当且仅当 \(j<i\) 时,存在每个 i->j
边。如果 directed=FALSE
,那么该图只是一个完全图。
参见
其他确定性构造函数:graph_from_atlas()
, graph_from_edgelist()
, graph_from_literal()
, make_()
, make_chordal_ring()
, make_empty_graph()
, make_full_graph()
, make_graph()
, make_lattice()
, make_ring()
, make_star()
, make_tree()
示例
print_all(make_full_citation_graph(10))
#> IGRAPH 8cbaed9 D--- 10 45 -- Full citation graph
#> + attr: name (g/c)
#> + graph attributes:
#> | + name:
#> | [1] "Full citation graph"
#> + edges:
#> 1 -> 2 -> 1 3 -> 1 2
#> 4 -> 1 2 3 5 -> 1 2 3 4 6 -> 1 2 3 4 5
#> 7 -> 1 2 3 4 5 6 8 -> 1 2 3 4 5 6 7 9 -> 1 2 3 4 5 6 7 8
#> 10 -> 1 2 3 4 5 6 7 8 9