我是 igraph 的新手。我将它与 R 一起使用(我也是新手)。我想稍后使用 CINNA R 包,但我正在努力将我的网络加载到 igraph/从我的文件中创建一个 igraph 对象。到目前为止我已经尝试过:
-
```read.graph("file", format = "graphml") Error in read.graph.graphml(file, ...) : At rinterface.c:6077 : cannot open GraphML file, File operation error```
-
```read.graph("file", format="gml")```
--> 然后 R 崩溃。
-
```read.graph("file", format="edgelist") Error in read.graph.edgelist(file, ...) : At rinterface.c:5006 : cannot read edgelist, File operation error```
-
```graph_from_edgelist("file", directed=TRUE) Error in graph_from_edgelist("file", : graph_from_edgelist expects a matrix with two columns```
有人了解我的问题并知道如何解决吗?