igraph is a free software package for creating and manipulating large undirected and directed graphs.
I have an edgelist for a two mode network, similar to this: person Event Amy football_game Sam picnic Bob …
r igraph snaI'm trying to install python-igraph. After I run sudo pip install python-igraph I got the following log: Downloading/unpacking python-igraph …
linux python-2.7 igraphThough the manual states that this will be a future feature: arrow.size The size of the arrows. Currently this …
r plot igraphI need to obtain a subgraph of the seed nodes (the input list of nodes; file.txt) and their first …
r igraph subgraphI am using the igraph package in R. I would like to associate some data with each vertex, e.g. …
r igraphI'm working with the iGraph library and I need to run some statistical analysis on the network. I'm computing several …
r statistics igraphSay I have this example graph, i want to find the edges connected to vertex 'a' d <- data.…
r igraphI'm writing a function that receives a graph as input. The very first thing I need to do is determine …
python igraphI have an igraph with several disconnected components. For example: library(igraph) g <- simplify( graph.compose( graph.ring(10), …
r igraph