sg_from_igraph.RdCreate a sigmajs from an igraph object.
sg_from_igraph(sg, igraph, layout = NULL, sd = NULL)
| sg | An object of class |
|---|---|
| igraph | An object of class |
| layout | A matrix of coordinates. |
| sd | A SharedData of nodes. |
# NOT RUN { data("lesmis_igraph") layout <- igraph::layout_with_fr(lesmis_igraph) sigmajs() %>% sg_from_igraph(lesmis_igraph, layout) %>% sg_settings(defaultNodeColor = "#000") # }