How do I draw a weighted network of N>1000 nodes in networkx by thickness? If I have a .csv list of source, target nodes and the weight for each edge, and I am thinking of using the method:
for i in range(N)
G.add_edge(source[i],target[i], weight=weight[i])
nx.draw_networkx_edges(G)
but then, do I have to give thickness to every edge? or every group of edges with similar thickness?
You can specify each edge individually, or you can define them in groups if you have some function to compute groupings (and then use multiple calls to
draw_network_edges
).Here's an example with a random graph that uses the edge weights as is, first to define the edge thickness and second, using the data as coloring instead.
Which gives you something like this:
Clearly you could use a more complicated function to assemble the list of edgewidth values as suitable to your application (e.g. binned values or a product of different properties) as well.