I am new to igraph. I use it with R (which I am new to as well). I want to use the CINNA R package later on, but am struggling to load my network into igraph/create an igraph object out of my file. What I have tried so far:
-
```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")```
--> then R crashes.
-
```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```
Does anyone understand my problem and knows how to solve it?