我在文本文件中有一个Twitter关注者列表,我想将其导入iGraph。
这是我的清单
的样本393795446 18215973
393795446 582203919
393795446 190709835
393795446 1093090866
393795446 157780872
393795446 1580109739
393795446 3301748909
393795446 1536791610
393795446 106170345
393795446 9409752
这就是我导入它的方式
from igraph import *
twitter_igraph = Graph.Read_Edgelist('twitter_edgelist.txt', directed=True)
但是我收到了这个错误。
---------------------------------------------------------------------------
InternalError Traceback (most recent call last)
<ipython-input-10-d808f2237fa8> in <module>()
----> 1 twitter_igraph = Graph.Read_Edgelist('twitter_edgelist.txt', directed=True)
InternalError: Error at type_indexededgelist.c:369: cannot add negative number of vertices, Invalid value
我不确定为什么它会说一些关于负数的信息。我检查文件,它没有任何负数或ID。