我该如何修复 AttributeError: 'dict_values' object has no attribute 'count'?

新手上路,请多包涵

这是我的 代码,文本文件在 这里

import networkx as nx
import pylab as plt

webg = nx.read_edgelist('web-graph.txt',create_using=nx.DiGraph(),nodetype=int)
in_degrees = webg.in_degree()
in_values = sorted(set(in_degrees.values()))
in_hist = [in_degrees.values().count(x)for x in in_values]

我想绘制度分布网络图,我该如何更改 dict 来解决?

原文由 alireza shokrizade 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 816
1 个回答

在 Python3 dict.values() 返回“视图”而不是列表:

要将“视图”转换为列表,只需将 in_degrees.values() 包装在 list() 中:

 in_hist = [list(in_degrees.values()).count(x) for x in in_values]

原文由 Tulio Casagrande 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题