本文簡要介紹
networkx.generators.random_graphs.random_shell_graph
的用法。用法:
random_shell_graph(constructor, seed=None)
返回給定構造函數的隨機 shell 圖。
- constructor:三元組列表
表示殼的參數,從中心殼開始。列表的每個元素必須采用
(n, m, d)
的形式,其中n
是 shell 中的節點數,m
是 shell 中的邊數,d
是 inter-shell 的比率(下)邊到intra-shell 邊。如果d
為零,則沒有intra-shell 邊,如果d
為1,則所有可能的intra-shell 邊。- seed:整數、random_state 或無(默認)
隨機數生成狀態的指示符。請參閱隨機性。
參數:
例子:
>>> constructor = [(10, 20, 0.8), (20, 40, 0.8)] >>> G = nx.random_shell_graph(constructor)
相關用法
- Python NetworkX random_partition_graph用法及代碼示例
- Python NetworkX random_degree_sequence_graph用法及代碼示例
- Python NetworkX random_geometric_graph用法及代碼示例
- Python NetworkX random_layout用法及代碼示例
- Python NetworkX random_clustered_graph用法及代碼示例
- Python NetworkX random_tree用法及代碼示例
- Python NetworkX random_kernel_graph用法及代碼示例
- Python NetworkX ra_index_soundarajan_hopcroft用法及代碼示例
- Python NetworkX read_multiline_adjlist用法及代碼示例
- Python NetworkX read_weighted_edgelist用法及代碼示例
- Python NetworkX relaxed_caveman_graph用法及代碼示例
- Python NetworkX read_pajek用法及代碼示例
- Python NetworkX resource_allocation_index用法及代碼示例
- Python NetworkX read_graph6用法及代碼示例
- Python NetworkX read_graphml用法及代碼示例
- Python NetworkX reverse_view用法及代碼示例
- Python NetworkX read_sparse6用法及代碼示例
- Python NetworkX read_adjlist用法及代碼示例
- Python NetworkX read_gpickle用法及代碼示例
- Python NetworkX recursive_simple_cycles用法及代碼示例
- Python NetworkX restricted_view用法及代碼示例
- Python NetworkX robins_alexander_clustering用法及代碼示例
- Python NetworkX read_gml用法及代碼示例
- Python NetworkX rich_club_coefficient用法及代碼示例
- Python NetworkX rescale_layout_dict用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.generators.random_graphs.random_shell_graph。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。