0

这是我第一次做编程;我有一个需要网络分析的项目。我下载了networkx 1.6并尝试了blockmodel,我收到了这个错误信息:

Traceback (most recent call last):
  File "C:\Users\dell\Desktop\Research Project\python\blockmodel.py", line 52, in <module>
    G=nx.read_edgelist("hartford_drug.edgelist")
  File "<string>", line 2, in read_edgelist
  File "C:\Python27\lib\site-packages\networkx\utils\decorators.py", line 173, in _open_file
    fh = _dispatch_dict[ext](path, mode=mode)
IOError: [Errno 2] No such file or directory: 'hartford_drug.edgelist'

怎么了?特别是我同时运行 zip 文件和 egg 文件,感谢任何紧急帮助:)

4

1 回答 1

0

您需要数据文件 hartford_drug.edgelist,您可以从这里获得:http://networkx.lanl.gov/hg/networkx/raw-file/bec267f40c83/examples/algorithms/hartford_drug.edgelist

于 2011-12-16T00:54:31.383 回答