模块'networkx'没有属性'blockmodel'?

时间:2017-10-15 20:55:25

标签: python graph-theory networkx

我正在尝试使用networkx blockmodel函数,但Python一直说没有属性'blockmodel'。我正在使用链接here中的文档中的示例代码。

我安装了networkx,还有许多其他功能正在运行。只有这一个似乎抱怨。非常感谢帮助。

1 个答案:

答案 0 :(得分:4)

blockmodel功能已在最新版本的networkx(您正在查看较旧的文档)中替换为quotient_graph
以下是生成块模型的示例

>>> G = nx.path_graph(6)
>>> partition = [{0, 1}, {2, 3}, {4, 5}]
>>> M = nx.quotient_graph(G, partition, relabel=True)
>>> list(M.edges())
[(0, 1), (1, 2)]

参见https://networkx.github.io/documentation/stable/reference/algorithms/generated/networkx.algorithms.minors.quotient_graph.html?highlight=blockmodel 更新文档。