gexf.to.igraph doesn't all passes igraph object's attributes

Issue #14 resolved
George Vega Yon repo owner created an issue

Must check this lines in the function

x <- list.vertex.attributes(g)
  x <- x[!(x %in% "name")]
  if (length(x)) 
    nAtt <- NULL
  else nAtt <- subset(tmpedges, select = x)
  x <- list.edge.attributes(g)
  x <- x[!(x %in% "weight")]
  if (length(x)) 
    eAtt <- NULL
  else eAtt <- subset(tmpedges, select = x)

Thanks Roberto Brunelli!

Comments (1)

  1. Log in to comment