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.
0
votes
4answers
80 views
Use Python to write to a .txt file column by column
How do you append a new column of data to an existing .txt file? Basically I'm generating 5 dictionaries and each time I generate one I want to write the values to a master text file in a new column. ...
0
votes
0answers
20 views
Chosing random node among nodes with highest attribute value
I am new to Python and networkx and have been trying in vain to solve the following problem:
I want to select and print a walk of three nodes in a highly interconnected network. Starting with a ...
0
votes
0answers
24 views
Python networkx and persistence (perhaps in neo4j)
I have an application that creates many thousands of graphs in memory per second. I wish to find a way to persist these for subsequent querying. They aren't particularly large (perhaps max ~1k nodes).
...
0
votes
1answer
32 views
Check if an undirected graph is a tree in networkx
I would like to know if there is a simple way to check whether a certain undirected graph in networkx is a tree or not
0
votes
1answer
17 views
Does networkx support dfs traversal by label
The networkx dfs_edges() function will iterate over child nodes. As far as I can tell, the http://networkx.lanl.gov/ documentation does not specify a parameter into dfs_edges() to only traverse if ...
1
vote
1answer
31 views
Node size dependent on the node degree on NetworkX
I imported my Facebook data onto my computer in the form of a .json file. The data is in the format:
{"nodes":[{"name":"Alan"},{"name":"Bob"}],"links":[{"source":0,"target:1"}]}
Then, I use this ...
0
votes
1answer
38 views
All shortest paths for weighted graphs with networkx?
I have a graph composed by two different sets of edges. The first set is made by edges of weight 1 (list 1). The second set is made by edges of weight 2 (list 2). First, I create the graph with ...
0
votes
2answers
70 views
Replacing single value in dict in python list comprehension with other items
Currently I am populating a generator from networkx's MultiDiGraph module, in this way:
new_u0_edges = ((u, new_u1, key, edata) for u, v, key, edata in
self.g.edges_iter(u0, ...
1
vote
1answer
27 views
how to make a satisfied layout for my data(complex network) using networkx or something else
I want to visualize my data.
my data is like: my data file is :https://gist.github.com/anonymous/5568836
4556 5092 0.7000
4556 4785 0.7500
4556 5397 0.7000
4556 5139 ...
0
votes
0answers
28 views
Specified graph edge length with NetwokX
I need to be able to make a graph with specified edge lengths, I can do this with:
G = Graph()
edgeList = [(a, b, 5), (a, c, 6), (a, d, 7)]
G.add_weighted_edges_from(edgeList)
This is fine, until I ...
1
vote
1answer
70 views
Plotting log-binned network degree distributions
I have often encountered and made long-tailed degree distributions/histograms from complex networks like the figures below. They make the heavy end of these tails, well, very heavy and crowded from ...
0
votes
0answers
34 views
keyError in python when using networkx package to visualize data
I'm trying to download twitter account and followers information trying to visualize the data by creating a relationship graph with Networkx python package and Gaphi.
import networkx as nx
...
0
votes
1answer
22 views
networkx encounter Node has no position
I have follow :
networkx: change node color in draw_circular
to draw a pic with two color nodes.
I have some data like:
4556 5092 0.7000
4556 4785 0.7500
4556 5397 0.7000
4556 ...
0
votes
0answers
43 views
Error while working with Python and Networkx in Visual studio 2010
I have installed Visual Studio 2010 with PTVS 2.0 and Enthought Canopy Express on a Windows 7 machine.
I have also installed Networkx python package.
Here is the program which I'm trying to execute.
...
0
votes
0answers
56 views
why I draw graph encounter divide by zero error?
I have some data like:
4556 5092 0.7000
4556 4785 0.7500
4556 5397 0.7000
4556 5139 0.7500
4556 5937 0.8333
4556 6220 0.7000
4556 5139 0.7500
4556 ...
-2
votes
1answer
51 views
networkx position specific nodes [closed]
I am using networkx and the spring algorithm to create a network with 34 nodes and directed edges between them. The result is too clustered. I would like to position a few specific nodes (the most ...
0
votes
1answer
61 views
Networkx graph: finding if path exists between any node in a given set of nodes and another set of nodes
I have a large undirected graph with hundreds of thousands of nodes and tens of thousands of edges. I have two separate problems:
1) For a set of nodes N = (node[1], node[2], node[3], node[4], ...
0
votes
0answers
35 views
How do I generate a network matrix from data I collect from the Twitter API?
Kind of a Python noob here. I have Python code from Matthew Russell's books "21 Recipes for Mining Twitter" and "Mining the Social Web" that I want to use for a project to collect various kinds of ...
0
votes
1answer
27 views
Is there a issue with using NetworkX from multiple processes on different graphs?
If each process creates its own nx.Graph() and adds/removes nodes/edges to it, is there any reason for them to collide? I am noticing some weird phenomenoms and trying to debug them.
The general ...
0
votes
0answers
29 views
Suggestions/ideas for data collection (software packages, resources) from the Twitter API [closed]
I am working on a social science project with the goal of mining data from the Twitter API for a social network analysis. I'm interested in feedback/suggestions for software/programming language ...
0
votes
1answer
29 views
Pygraphviz xlabel position and color doesn't work
I am using pygraphviz to create graphs for my project. I am unable to figure out how to center the xlabel of nodes and also how to change the color of xlabel.
graph.add_node(row[3], ...
1
vote
1answer
57 views
Is there a better function for finding edges on a list of common nodes?
I have a list of nodes and each node has measured the wifi field strength from other points. The list will be in the form:
RSSI_list = [[node4, node3, RSSI], [node7, node5, RSSI]] #etc (it will be ...
0
votes
1answer
58 views
Rounding in Python NumPy when adding nodes in Networkx
Where do I get the trailing 0 or 9 from ? I checked at each step that no rounding issues appear and I got the correct results. However, when I add this numbers to the graph, rounding problems arise.
...
0
votes
1answer
51 views
Jython graph library
I need to use python with Java in a project in which graphs (the kind with nodes and edges) plays a large role. I want to visualize those graphs in a simple GUI and update its node labels/edge ...
0
votes
0answers
29 views
Node properties from NetworkX to GEFX to Gephi
I am able to successfully apply weights to an edge that show up in Gephi by using the keyword argument weight=number. However, I can't seem to set the same for nodes. I cannot add a label to a node, ...
0
votes
2answers
47 views
networkx:creating a subgraph induced from edges
networkx only has a function
Graph.subgraph()
to create a subgraph induced from nodes.
but how to construct a subgraph from edge list ?
thanks !
0
votes
0answers
77 views
Rounding and Decimal not working in Python Networkx
I am using this tree to do option pricing so the decimals are relevant but not extremely. When n>8, I don't know why bur the function I have to detect duplicates is not working well. I believe the ...
1
vote
1answer
51 views
Getting top n edges in a graph networkx
I have a directed multi-graph which with weights. The edge addition looks like
g.add_edge(source_a,source_b, weight= some_Weight)
When the graph is built, I want to have edges only between top ...
0
votes
1answer
78 views
Adding multi-level attributes to nodes using NetworkX
I am trying to export a graph file with some visualization specifications . I could not figure out how to add multi-level attributes .
Import networkx as nx
#Create the Graph
g = nx.Graph()
...
0
votes
1answer
25 views
UnicodeDecodeError for WRITING File
I know that this is a very common error, but it's the first time I've encountered it when trying to write a file.
I'm using networkx to work with graphs for network analysis, and when I try to write ...
0
votes
1answer
50 views
How to set the nodes color with a given graph
I am using networkx and matplotlib
Now I want to set the color of nodes,and I read the graph from text file
G=nx.read_edgelist("Edge.txt")
nx.draw(G)
plt.show()
Here is the Edge file of example
...
0
votes
0answers
26 views
How to read in graphml file into networkx with weird characters?
I am trying to read in a graphml file of my facebook network into NetworkX. However, because some of my friends have unusual characters, such as accents, their names are unable to be read into ...
3
votes
3answers
70 views
graph from weighted edge list from a database
I have list of weighted edges stored in database.
How can I easily create a Graph from it (without writing it in a file and reading it)
Here the reproductible
import sqlite3
con = ...
0
votes
0answers
73 views
Networkx, AttributeError: 'module' object has no attribute 'all_simple_paths'
I am a new user of python-networkx, and somehow it shows an error when I try all_shortest_paths function here
ps: I have updated networkx to the latest version
>>> import networkx as nx
...
0
votes
0answers
26 views
Networkx PageRank - Equal Ranks with Different Weights
I have a question about PageRank which may show that I don't understand it well. If I have a graph with two nodes "A" and "B" and the link A --> B weights 1.0 and B --> A weight 2.0, shouldn't A rank ...
1
vote
1answer
60 views
Loading a biadjacency matrix in networkx
I have a csv file containing an m x n biadjacency matrix. Which was exported like:
numpy.savetxt("file.csv", biadjacency_matrix, ...)
Now I have to import the matrix but struggle to find the ...
2
votes
2answers
222 views
k shortest paths implementation in Igraph/networkx (Yen's algorithm)
After thorough research and based on this , this and a lot more I was suggested to implement k shortest paths algorithm in order to find first, second, third ... k-th shortest path in a large ...
0
votes
0answers
56 views
Drawing and clearing networkx graphs in ipython --pylab
This is annoyance really, but is becoming an increasing headache and wasting time. I'm working with networkx objects in a Win7 IPython pylab environment (2.7.3). The interface between IPython and ...
0
votes
2answers
109 views
Networkx creating a graph with node attributes to determine which edges are connected
I am trying to create a connected graph where each node has some attributes that determine what other nodes it is connected to. The network is a circular space to make it easy to establish links ...
1
vote
1answer
35 views
Use attributes in heuristic
I want to use a heuristic for A* in networkx, but I can't find out how to access node attributes in the heuristic (I need them for my heuristic). How can I access node attributes in a heuristic ...
2
votes
1answer
53 views
Unusual behavior in networkx node coloring
I'm drawing to draw a simple undirected graph with networkx and I'm having trouble coloring the nodes according to a specific attribute. I created a dictionary, in which case the key references a list ...
0
votes
0answers
48 views
Find closest node with attribute
I have a large networkx network where I want to find the closest node (by edge weight, recursively) with a attribute set to True. Can I do this without looping over nodes?
0
votes
1answer
48 views
Problems in NetworkX pagerank
I'm trying to run NetworkX's pagerank on a really big graph (DiGraph) and I'm always getting this error:
Traceback (most recent call last):
File "summarize.py", line 120, in <module>
s ...
1
vote
1answer
63 views
NetworkX: Subgraph Isomorphism by edge and node attributes
Suppose I have 2 graphs A and B and I want to know if A is a subgraph of B.
The nodes contain attributes, say, 'size' and 'material'.
When I run:
GM = ...
3
votes
3answers
131 views
Best practices for Querying graphs by edge and node attributes in NetworkX
Using NetworkX, and new to the library, for a social network analysis query. By Query, I mean select/create subgraphs by attributes of both edges nodes where the edges create a path, and nodes contain ...
1
vote
1answer
42 views
Python - Logical Tests on Graph Data with NetworkX
I would like to parse a large set of DiGraph data and perform some logical tests on it. The data looks like:
Source,Target,DateTime
a,b,201212100401
a,d,201212100403
b,e,201212100511
...
0
votes
2answers
90 views
Python networkx : edge contraction
I have a networkx graph. I would like to know how to do edge contraction between multiple nodes.
For example if i wanted to contract X, Y and Z:
_ node A _
_/ | \_
node X --- ...
1
vote
3answers
114 views
Networkx : Convert multigraph into simple graph with weighted edges
I have a multigraph object and would like to convert it to a simple graph object with weighted edges. I have looked through the networkx documentation and can't seem to find a built in function to ...
1
vote
1answer
163 views
Node labels using networkx
I'm creating a graph out of given sequence of Y values held by curveSeq. (the X values are enumerated automatically: 0,1,2...)
i.e for curveSeq = [10,20,30], my graph will contain the points:
...
0
votes
1answer
33 views
Networkx Dataset Creation
I have data for a directed graph in the form of
Node1 Node2
A B
A C
C A
D A
Which means, a directed edge/link between A --> B, A --> C and so on.
I want to create this data ...


