Tagged Questions
igraph is a free software package for creating and manipulating large undirected and directed graphs. It is written in C, but has interfaces to higher-level languages like R, Python or Ruby.
5
votes
1answer
104 views
How do the iterators V and E in igraph using R work?
I've looked through the source for V and E and I'm not really sure how they work.
Here's the code for V:
> V
function (graph)
{
if (!is.igraph(graph)) {
stop("Not a graph object")
...
5
votes
2answers
2k views
pycairo “ImportError: DLL load failed: The specified module could not be found.” even after DLLs installed
I'm following the pycairo installation instructions here :
http://www.cs.rhul.ac.uk/home/tamas/development/igraph/tutorial/install.html
to install pycairo for use with igraph.
However, even after ...
4
votes
1answer
148 views
Common neighbors and preferential attachment score matrixes using igraph for python
Is there an efficient way to calculate the matrix score for common neighbors(CC) and preferential attachment(PA) in python? I'm using igraph to calculate score matrixes for other methods such as ...
4
votes
2answers
64 views
igraph'ing nested models
Running e.g. cv.glmnet on a dataset gives me (by default) 100 different models. Now, if my dataset had missing data, I could do multiple imputation (say 10 imputations) and run cv.glmnet on each of ...
3
votes
2answers
113 views
How do I calculate weighted degree distributions with igraph in R?
Consider a dataframe df where the first two columns are node pairs and successive columns V1, V2, ..., Vn represent flows between the nodes (potentially 0, implying no edge for that column's network). ...
3
votes
1answer
78 views
Read Disconected Graph in igraph for python
I'd like to know the best way to read a disconected undirected graph using igraph for python. For instance, if I have the simple graph in which 0 is linked to 1 and 2 is a node not connected to any ...
2
votes
1answer
64 views
Creating new measures in igraph
I want to create a function for Burt's effective size.
The formula boils down to:
Effective size = n - 2t/n
where t is the number of ties (not counting ties to ego)
n is the number of people in the ...
2
votes
2answers
58 views
R from vector/factor to list
My problem is as it follows. I'm dealing with big data graphs using R/igraph.
I need to convert the output of clusters()$membership (i.e a vector), to a list which groups the values.
Example: I have ...
2
votes
1answer
93 views
Prevent R igraph from adding a zero vertex
I am creating a graph using the follow code:
g <- graph(c(1,1, 1,4, 2,1, 2,2, 3,1, 3,4, 5,1, 5,2))
I would like to know how I can create this graph and not have to go the extra step of:
...
2
votes
0answers
50 views
Improvement of a C function based in igraph [closed]
Related with the question "Edge - weight association" and the Tamás's answer, I wrote the below code to get the arc weigth of the mst tree extracted from the original vector weigth. I will use ...
2
votes
1answer
76 views
Edge - weight association
I'm working in C with igraph library.
I need to calculate the the minimum spanning tree of a graph, using the following call:
igraph_minimum_spanning_tree_prim( &input_graph, &mst_tree, ...
2
votes
1answer
221 views
representing a mosaic plot as a tree plot
I want to visualize a mosaic plot in form of a tree. For example
mosaicplot(~ Sex + Age + Survived, data = Titanic, color = TRUE)
Now what I want is to represent this in a tree form where the first ...
2
votes
1answer
241 views
Convert igraph object to a data frame in R
I'm working with the iGraph library and I need to run some statistical analysis on the network. I'm computing several variables using iGraph and then want to use those indicators as the dependent ...
2
votes
1answer
839 views
All possible paths from one node to another in a directed tree (igraph)
I use python binding to igraph to represent a directed tree. I would like to find all possible paths from one node in that graph to another one. Unfortunately, I couldn't find a ready to use function ...
2
votes
2answers
209 views
Igraph: Obtain the longest geodesic distance
My question is the following:
Consider a undirect graph with 10000 nodes and 4800 edges.
Given this graph and given a node of this graph (for example, node 1), I need a command in igraph (R) to obtain ...
2
votes
3answers
1k views
[python]: path between two nodes
I'm using networkx to work with graphs. I have pretty large graph (it's near 200 nodes in it) and I try to find all possible paths between two nodes. But, as I understand, networkx can find only ...
2
votes
1answer
331 views
Graph algorithms (lib) with input graph in read-only shared memory on C/++
I would like to have a manager process sharing graphs via shared memory, read-only for other processes which will run various graph algorithms on these graphs. I would like to ask some questions ...
2
votes
1answer
212 views
How can I alter the appearance of nodes in igraph?
I would like to lay out graphs (trees) with two types of nodes: boxes and circles.
Is this possible with igraph and how would a minimal example look like?
2
votes
1answer
746 views
Specified edge lengths on networkx/igraph (Python)
I wanted to visualize a network with the data I have and would like to graph them with specific edge lengths. I use Python, and I've tried networkx and igraph to plot but all seem to assign fixed edge ...
2
votes
4answers
722 views
Creating an adjacency list from a data.frame
I have a data.frame with 2 columns: Node A, Node B. Each entry in the frame implies an edge in a graph between node A and B.
There must be a nice one-liner to convert this data.frame into an ...
1
vote
2answers
73 views
Determining Betweenness Centrality With The Igraph Library
I am a very, very mediocre programmer, but I still aim to use the igraph python library to determine the effect of a user's centrality in a given forum to predict his later contributions to that ...
1
vote
0answers
68 views
Cannot import igraph 0.5.4 into Python 2.5 on Mac OS X 10.6
I'm trying to install igraph to visualize networks of neurons. I was able to install igraph with only minor difficulties, actually exactly those in this question. Now, I have another problem, I can't ...
1
vote
1answer
47 views
Importing Large iGraph Memory Exhausted
I'm trying to import a large LGL file (~2GB) and I am attempting to import this in igraph using
graph = Graph.Read_Lgl("Biggraph.lgl")
The error it is throwing is
Traceback (most recent call ...
1
vote
1answer
52 views
Does get.edgelist in R library igraph return proper directed edges?
If the graph passed to get.edgelist is directed, does the list of edges as returned by get.edgelist maintain the proper directions? I would think that this is the case but the documentation found here ...
1
vote
1answer
64 views
How to compute the cost of an mst graph.
I'm working in C, using the igraph library. I need to get the minimum spanning tree of a given graph stores in a igraph_graph_t type (g). Also I have a igraph_vector containing the weight of each edge ...
1
vote
1answer
93 views
make loop to create list of igraph objects in R
I'd like to create a list of Igraph objects with the data used for each Igraph object determined by another variable.
This is how I create a single Igraph object
netEdges <- NULL
for (idi in ...
1
vote
1answer
146 views
I can't import igraph on mac 10.6
I installed igraph for python in my mac but I can't import it. First I installed C core library, then I proceeded with the instalation for python, by doing:
python setup.py build
python setup.py ...
1
vote
1answer
117 views
Reading edges from a file. I can't define a graph
I am new in R. I am working with igraph library. I am new using such library.
I have a problem:
I have a list of edges in a text file. It has two columns. The first has initial node, the second has ...
1
vote
1answer
211 views
How to solve AttributeError when importing igraph?
When I import the igraph package in my project, I get an AttributeError. This only happens in the project directory:
[12:34][~]$ python2
Python 2.7.1 (r271:86832, Apr 15 2011, 12:09:10)
[GCC 4.5.2 ...
1
vote
1answer
146 views
How do I apply a function to each connected components within a graph/network?
I have a large igraph object 70,000+ vertices (nodes) and 200,000+ edges (connections). I'd like to calculate some measures of centrality but the network is too big. I thought a good work around ...
1
vote
1answer
996 views
How to control the igraph plot layout with Fixed Positions?
I am trying to draw a network visualization to resemble a flow diagram. I'm fairly close with the following code, but I have a couple questions:
Is this the best layout() algorithm, or can I ...
1
vote
2answers
290 views
Generating all possible 3-connected graphs
There is a conjecture by Tutte and Thomassen (Planarity and duality of finite and infinite graphs, 1979) saying this
A 3-connected graph can be obtained
from a wheel by succestively adding an
...
1
vote
2answers
88 views
Is there a way to check if its safe to copy or assign an object in C++?
I have the following problem. I'm using the C library igraph (http://igraph.sourceforge.net/) in a program I must do in c++. So I found a c++ wrapper of this C library ...
1
vote
2answers
408 views
Installing the igraph package for python
I have downloaded the igraph 0.5.4 tar ball for macosx Leopard 10.5.8. When I unpack it and then run:
sudo python setup.py install
I get the following long error message:
Include path: ...
1
vote
1answer
179 views
How do I find the edges of a vertex using igraph and R?
Say I have this example graph, i want to find the edges connected to vertex 'a'
d <- data.frame(p1=c('a', 'a', 'a', 'b', 'b', 'b', 'c', 'c', 'd'),
p2=c('b', 'c', 'd', 'c', 'd', ...
1
vote
1answer
446 views
How can I draw a tree with igraph “bottom-up”?
It is very straight-forward to plot a tree using igraph in R
library(igraph)
plot(graph.tree(20, 2), layout=layout.reingold.tilford)
Is it possible to "turn the graph around", so that the root ...
1
vote
1answer
295 views
How do I construct a new centrality measure in R / igraph?
I want to construct a new centrality measure using igraph, preferably in R. How would I begin this? For example, would I be better adding to the igraph C library or the R interface?
Thanks
Conor
1
vote
1answer
335 views
How to get vertex eigenvalue centralities in R with igraph
I have a network loaded into an igraph object G that has 198 vertices and 214 edges. If I run:
eig<-evcent(G)$vector
The resulting eig is a vector with 2172 elements, rather than 198 elements. ...
0
votes
1answer
23 views
Graphml parse error
I tried to create a graphml file using python and igraph library. I can construct igraph's graph object and wrote it to a file using:
g.write_graphml("mygraph.graphml")
Everything seems to be ...
0
votes
0answers
64 views
choosing a c++ graph library
I'm currently looking for a c++ graph library. (I saw already all the different posts here but my requierments are totally different).
With the help of the library I will have to create a some graphs ...
0
votes
0answers
117 views
what is wrong with installing pycairo for igraph?
I followed the instructions here
to install pycairo on win and be able to use plotting in igraph
I have python 2.7
pycairo 1.8.10
and dll files with the same numbers written in the above link, then ...
0
votes
1answer
76 views
How do I create vertex attributes based on vertices' neighbors' attributes in igraph?
For example, how would I calculate, for each vertex, the percentage of ties directed outward toward males?
g <- erdos.renyi.game(20, .3, type=c("gnp"), directed = TRUE)
V(g)$male <- ...
0
votes
1answer
37 views
Detecting communities results in isolated nodes
I am trying to gather some communities form my graph. However, the resulting communities consist of isolated nodes, which contradicts my understanding of communities.
Here is my essential ...
0
votes
1answer
65 views
How to use igraph vertex.shape functionality
Has anyone used igraph's vertex.shape functionality? This http://cneurocvs.rmki.kfki.hu/igraph/doc/R/igraph.vertex.shapes.html was promising but I could not understand. Does anyone have an example ...
0
votes
0answers
20 views
NetBeans Compile igraph
Does anyone know how to compile a C program that includes the header igraph.h using NetBeans IDE with either MinGW or Cygwin? Any help would be much appreciated. I just can't seem to get it to work, ...
0
votes
1answer
185 views
Why the clustering coefficient differs from my program and igraph R's library?
I'm just coding a program in C++ that calculates the clustering coefficient [CC] (local and global) of an undirected graph in dot format. My problem is that the result of my program doesn't match the ...
0
votes
0answers
164 views
Finding stochastic sub-matrices?
I am posting this on behalf of a friend:
I was wondering if you know an algorithm which selects stochastic
submatrices from an arbitrary binary matrix.
Actually my problem is the following:
Say I ...
0
votes
2answers
51 views
an ad-hoc edge property derived from weight
It is cross posted on https://lists.nongnu.org/archive/html/igraph-help/2011-05/msg00104.html
I am using igraph (via python) for graph clustering.
I have a tree (a minimal spanning tree of a ...
0
votes
2answers
108 views
How do I lengthen edges in an igraph network plot (layout=fruchterman.reingold)?
Trying to do a network plot in R.
How do I lengthen edges in a network graph using IGraph?
I actually want to use the fruchterman-reingold layout. Is there some way I can make that force-based ...
0
votes
2answers
211 views
R reciprocal edges in igraph in R
I am working with graphs in R. I am currently using igraph and I would like to be able to plot bidirectional edges "reciprocal edges" of a graph. So far I've seen it is possible to plot ...