当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX planted_partition_graph用法及代码示例


本文简要介绍 networkx.generators.community.planted_partition_graph 的用法。

用法:

planted_partition_graph(l, k, p_in, p_out, seed=None, directed=False)

返回种植的l-partition 图。

该模型将具有 n=l*k 个顶点的图划分为 l 个组,每个组有 k 个顶点。同一组的顶点以概率p_in链接,不同组的顶点以概率p_out链接。

参数

lint

组数

kint

每组的顶点数

p_in浮点数

连接组内顶点的概率

p_out浮点数

组间连接顶点的概率

seed整数、random_state 或无(默认)

随机数生成状态的指示符。请参阅随机性。

directed布尔,可选(默认=假)

如果 True 返回有向图

返回

GNetworkX 图表或DiGraph

种植l-partition图

抛出

NetworkXError

如果 p_in,p_out 不在 [0,1] 或

参考

1

A. Condon, R.M. Karp, Algorithms for graph partitioning on the planted partition model, Random Struct. Algor. 18 (2001) 116-140.

2

Santo Fortunato ‘Community Detection in Graphs’ Physical Reports Volume 486, Issue 3-5 p. 75-174. https://arxiv.org/abs/0906.0612

例子

>>> G = nx.planted_partition_graph(4, 3, 0.5, 0.1, seed=42)

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.generators.community.planted_partition_graph。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。