Tagged Questions

NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks. Use this tag for questions about how to install or use the package, for clarification on any of its methods, or for help with algorithms that you write that with it.

learn more… | top users | synonyms

7
votes
1answer
75 views

How to restrict certain paths in NetworkX graphs?

I am trying to calculate shortest path between 2 points using Dijkstra and A Star algorithms (in a directed NetworkX graph). At the moment it works fine and I can see the calculated path but I would ...
4
votes
3answers
878 views

list of all paths from source to sink in directed acyclic graph [closed]

Possible Duplicate: [python]: path between two nodes Can anyone point me to some resources on how to do this? I'm using networkx as my python library. Thanks!
3
votes
2answers
75 views

networks with random power-law distributed weights

How can I randomly assign weights from a power-law distribution to a network with very large number of nodes. I wrote import networkx as nx import numpy as np from networkx.utils import ...
3
votes
1answer
105 views

How can I get the number of nodes of a Neo4j graph database from Python?

I'm trying to get the number of nodes of a Neo4j graph database using Python, but I don't find any method or property to do that. Does anybody how can I get this information? Other Python packages ...
3
votes
1answer
177 views

What is the most efficient way to move/rename a node in NetworkX?

I am using the NetworkX graph library for Python. At some point in my program I would like to "consolidate" my nodeIDs into a sequence of numbers. Here's my naive approach: start = 1 # could be ...
3
votes
1answer
211 views

Using networkx with my own object

I have my own objects, say pepperoni. I have a list of edges to an from every pepperoni and a list of pepperonis. I then build a graph using networkx. I'm trying to find the weight of the shortest ...
3
votes
1answer
583 views

NetworkX node attribute drawing

Im using networkx for visualization. I see when I use the function draw_networkx_edge_labels I can retrieve the labels for edges. I want to print the attribute on node ( instead of the label).. try ...
3
votes
2answers
177 views

Python: Simulate search algorithms in network models

I am using networkx package to draw power law graphs. I want to simulate a search algorithm on this graph and want to visually see the algorithm move from one node to another on the graph. How do I do ...
2
votes
2answers
69 views

how to exclude some numbers from a list

import networkx as nx import numpy as np import random from networkx.utils import powerlaw_sequence W=powerlaw_sequence(100,exponent=2.5) random.choice(W) What if I want the numbers of this ...
2
votes
2answers
70 views

NetworkX and Matplotlib - Axes error

I have Networkx 1.6 and Matplotlib 1.1.0 on Windows this is my code: self.figure = Figure() self.axes = self.figure.add_subplot(1,1,1) self.canvas = FigureCanvas(self, -1, self.figure) G = nx.Graph() ...
2
votes
2answers
64 views

Using Python networkx for exploring network properties

I'm trying to make a code for getting Twitter network properties. But I got an error on my code. I don't know how come it happened. The error is this: Traceback (most recent call last): File ...
2
votes
2answers
96 views

Is it possible to add a weight/probability to a node in graph theory(using networkx)

I'm using networkx(library for python to deal with graphs). I basically have nodes with various edges but want to see what a path would look like if it used the nodes that were the most connected. I ...
2
votes
2answers
92 views

efficient projection of a bipartite graph in python (using networkx)

Using the networkx module, I do some network analysis under Python 3.2, where I need to project a bipartite graph (of inmates linked to their cell: input graph B in the code below) to a subgraph ...
2
votes
4answers
108 views

Help with optimising my model of social network evolution

I am writing a piece of code which models the evolution of a social network. The idea is that each person is assigned to a node and relationships between people (edges on the network) are given a ...
2
votes
1answer
388 views

Transfer layout from networkx to cytoscape

I want to use networkx to generate a layout for a graph. Is it possible to transfer this layout to cytoscape and draw it there? I tried to simply write a graph as import networkx as nx G = nx.Graph() ...
2
votes
1answer
193 views

Coloring walk edges in networkx

I've written a simple code to generate a random walk in a given graph G using the networkx library.. Now, as i take the walk, I want the edges to get colored and drawn using matplotlib.. say in a ...
2
votes
0answers
99 views

Is it possible to show tooltips on a networkx graph?

I have a simple graph with a lot of points, so I don't want to show labels for all of them. But I do want to be able to tell which is which, via tooltips. Is it possible to add/show tooltips using ...
2
votes
1answer
203 views

Minimize Cross Edges in a Graph

I am using networkx (a python graph-drawing package) http://networkx.lanl.gov/index.html for one of my project. Though networkx is pretty cool, the display function kind of sucks due to number of ...
2
votes
3answers
169 views

How should I create my object so it works with networkx pretty well?

I'm trying to design a project that takes global positioning data, like city and state names along with latitudes and locations. I'll also have distances between every pair of cities. I want to make a ...
2
votes
2answers
628 views

Generating a graph with certain degree distribution?

I am trying to generate a random graph that has small-world properties (exhibits a power law distribution). I just started using the networkx package and discovered that it offers a variety of random ...
2
votes
1answer
175 views

Recursively search networkx graph

A question about recursion (and tangentially the graphing library networkx): I have an directed graph with node that have edges that have an attribute ["value"] that can be 0 or 1 (effectively edge ...
2
votes
1answer
140 views

Any implementations of graph st-ordering or ear-decomposition?

I'm in the search for an implementation of an ear-decomposition algorithm (http://www.ics.uci.edu/~eppstein/junkyard/euler/ear.html). I examined networkx and didn't find one. Although the algorithm ...
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
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
2answers
847 views

MapReduce, Python and NetworkX

I have implemented an unweighted random walk function for a graph that I built in Python using NetworkX. Below is a snippet of my program that deals with the random walk. Elsewhere in my program, I ...
1
vote
1answer
31 views

how to export networkx graph to javascript?

I have a networkx graph which contains nodes whose positions in the graph are real world latitude and longitudes which I want to use with google maps. How do I export this graph using python for e.g. ...
1
vote
2answers
54 views

How to delete all related nodes in a directed graph using networkx?

I'm not sure exactly sure what the correct terminology is for my question so I'll just explain what I want to do. I have a directed graph and after I delete a node I want all independently related ...
1
vote
1answer
40 views

How to only keep nodes in networkx-graph with 2+ outgoing edges or 0 outgoing edges?

I have Directed Graph in networkx. I want to only keep those nodes which have two or more than two outgoing edges or no outgoing edge at all. How do I do this? or How do I removes nodes which have ...
1
vote
2answers
61 views

Memory problems while code is running (Python, Networkx)

I made a code for generate a graph with 379613734 edges. But the code couldn't be finished because of memory. It takes about 97% of server memory when it go through 62 million lines. So I killed it. ...
1
vote
1answer
84 views

subtree with networkX

In networkX, I have a tree as DiGraph(). #!/usr/bin/python # -*- coding: utf-8 -*- import networkx as nx t = nx.DiGraph() t.add_edge(1,'r') t.add_edge(2,'r') t.add_edge(3,'r') t.add_edge(4,2) ...
1
vote
1answer
159 views

Interactive visualization of a graph in python

I have a program written in python using the module networkx to create a dynamic graph. It is a planer graph where the vertices remain constant but the edges change. Now I'm looking for a library that ...
1
vote
0answers
70 views

how to streamline (or parallelize with multiprocessing) some python 3.2 code with many loops?

I tried to educate myself about optimizing python and potentially parallelizing my problem. The links I used are listed at my question posted over at ...
1
vote
3answers
174 views

Finding Successors of Successors in a Directed Graph in NetworkX

I'm working on some code for a directed graph in NetworkX, and have hit a block that's likely the result of my questionable programming experience. What I'm trying to do is the following: I have a ...
1
vote
2answers
231 views

networkx: edge weight as a calculated value

I want to implement a shortest path algorithm with NetworkX library. In my case, my weight function derives the value from other edge attributes. Because weight is a calculated value, I don't want to ...
1
vote
1answer
144 views

Change color of nodes when in a spring layout+ networkx

How can I change the nodes of a color where the location is not known So i have seen this link on stackoverflow where the answer has been given for an explicitly set positions of nodes. But say i ...
1
vote
1answer
145 views

Represent node relationship using Python NetworkX

I have around 200K nodes and their relationship in a XML file as follows: node_A - node_B direct, node_A - node_G inverse, node_A - node_H direct, node_A - node_X inverse, node_A - ...
1
vote
2answers
186 views

What is the fastest iteration over a large network instance of DiGraph networkx?

I'm writing a class which inherits from DiGraph.py from the open source networkx package in python. In some method in my class, I need to search for nodes with certain degrees (outdegrees or ...
1
vote
1answer
179 views

Python NetworkX Increase circular graph size

Is it possible to increase the size of graphs generated with networkx? Currently, it always outputs 800x600. How can I output a graph with a larger radius. Does it depend on my display size?
1
vote
1answer
448 views

how to get edges from networkx to color differently

I've built a tree image, see question. Now I've some major groups. One group has nodes with color green and brown, and has a 'B' and a 'A'. The second group has only pink nodes and 'T' and the last ...
1
vote
1answer
253 views

Getting the root (head) of a DiGraph in networkx (Python)

I'm trying to use networkx to do some graph representation in a project, and I'm not sure how to do a few things that should be simple. I created a directed graph with a bunch of nodes and edges, such ...
1
vote
2answers
374 views

NetworkX (Python): how to change edges' weight by designated rule

I have a weighted graph: F=nx.path_graph(10) G=nx.Graph() for (u, v) in F.edges(): G.add_edge(u,v,weight=1) get the nodes list: [(0, 1), (1, 2), (2, 3), (3, 4), (4, 5), (5, 6), (6, 7), (7, 8), ...
1
vote
1answer
387 views

Networkx: how to draw coloured edges?

I've built a graph using the following code: G = networkx.Graph() G.add_edges_from([list(e) for e in P + Q + R]) colors = "bgrcmyk" color_map = [colors[i] for i in range(n/2)] # add colors for i ...
1
vote
2answers
443 views

Most elegant way to find node's predecessors with networkX

I'm working on a graphical model project with python using NetworkX. NetworkX provides simple and good functionality using dictionaries: import networkx as nx G = nx.DiGraph() # a directed graph ...
1
vote
1answer
120 views

Need help with NetworkX

Currently im faced with the following problem: I have a script that searches through a specific directory that contains documents. Each document is assigned a number within the filename. Within each ...
1
vote
3answers
367 views

Method to save networkx graph to json graph?

Seems like there should be a method in networkx to export the json graph format, but I don't see it. I imagine this should be easy to do with nx.to_dict_of_dicts(), but would require a bit of ...
1
vote
1answer
467 views

Change Node Display Size in Networkx

I am not using GraphViz because I am having problems with making it play nice with Networkx. I know this is weird, but I've tried many suggestions to fix this problem, but I just seem to have some of ...
1
vote
1answer
252 views

How can I convert a digraph to an undirected graph in networkx?

I am using the networkx package. Is there a function in networkx which can do the task for me?
1
vote
1answer
580 views

Python :How to generate a power law graph

I have installed networkx and matplotlib packages. How can I generate a power law graph based on degree correlation i.e. graphs with high or low degree of homophily
1
vote
3answers
1k views

Matrices and inverse Matrices in Python

For a project that I am doing, I decompose a graph that I created using NetworkX into an adjacency matrix using the NetworkX adj_matrix() function. However, one of the problems that I have come across ...
0
votes
0answers
23 views

How can I incorporate hidden markov chains into a directed graph?

I'm struggling with the logic of this so any tips/suggestions would be great. Basically I have new data sets everyday, these sets are added as nodes into a graph. The next day when I add a new ...

1 2