1
vote
2answers
307 views

R igraph convert parallel edges to weight attribute

I'm working with igraph for R. My graph is based on an edgelist which includes parallel edges (more than one edge with the same source and target). I would like to convert these parallel edges to an ...
0
votes
2answers
243 views

igraph how to get edge ids along the shortest paths

I have a graph with multiple shortest paths and want to retrieve the ids of the vertices and the ids of the edges: igraph_get_all_shortest_paths(...) computes only the list of the vertices. Isn't ...
3
votes
1answer
155 views

Controlling which edges are visible in a network diagram in igraph in r

I have a the following diagram created in igraph set.seed(1410) df<-data.frame( "site.x"=c(rep("a",4),rep("b",4),rep("c",4),rep("d",4)), "site.y"=c(rep(c("e","f","g","h"),4)), ...
1
vote
1answer
384 views

R igraph add.edges() with attributes

Assign during add.edges() an attribute, like width: g <- add.edges(g,c(from,to), attr= width <- 1 ) Error message: please supply names for attributes
3
votes
2answers
348 views

Simple conversion to edgelist with R?

I need to do a simple data conversion in R for usage with igraph. My dataframe is in this format, grouped by GROUP: A GROUP 1 1 a 2 2 a 3 3 a 4 4 a 5 1 b ...
0
votes
1answer
236 views

edge sequence by vertex name

Hy Everybody! Well, I'm working with the Igraph package, and i'd like to pick the edges by the name that I've assigned to their vertex, in a tiny example.. library(igraph) g <- barabasi.game(8) ...