如何解决此错误。
igraph_graph= Graph.Read_Ncol("karate.ncol", directed=False)
SystemError: <built-in method Read_Ncol of type object at 0x5592a08942f8> returned NULL without setting an error
答案 0 :(得分:1)
您可以尝试使用2个步骤来解决问题(取决于您已经/尚未完成):-
igraph_graph
(karate.ncol
)中读取的文件位于当前工作目录中。确保到import os
并使用os.listdir(".")
检查目录的一种方法。karate.ncol
实际上是逗号分隔的值文件(.csv)
,则需要用空白空格替换分隔符,
,因为这是标准的.ncol
个文件需要满足的要求。如果您使用的文件是.csv
文件Python CSV change separator