在调用community.best_partiton()方法时,总是报错:AttributeError: ‘module’ object has no attribute ‘best_partition
一直使用失败,因为看到许多网络上的代码上调用import community, 我就以为这个包叫community,因此也花费了许多时间在找这个包。实际上,这个包叫python-louvain。
方法如下:
在pycharm上很方便,perference-project interperter- 右边的左下方有个“+”,然后输入louvain就出来了
安装完后,就可以使用community了
import community
在建立了图情况下,
#社区
# 图划分
part = community.best_partition(G)
print(part)
#绘