admin管理员组文章数量:1344568
I'm dipping my toes into network visualizations in Python. I have a dataframe like the following:
| user | nodes |
| -----| ---------|
| A | [0, 1, 3]|
| B | [1, 2, 4]|
| C | [0, 3] |
|... | |
Is there a way to easily plot a network graph (NetworkX?) from data that contains the list of nodes on each row? The presence of a node in a row would increase the prominence of that node on the graph (or the prominence/weight of the edge in the relationship between two nodes).
I assume some transformation would be required to get the data into the appropriate format for NetworkX (or similar) to be able to create the graph relationships.
Thanks!
I'm dipping my toes into network visualizations in Python. I have a dataframe like the following:
| user | nodes |
| -----| ---------|
| A | [0, 1, 3]|
| B | [1, 2, 4]|
| C | [0, 3] |
|... | |
Is there a way to easily plot a network graph (NetworkX?) from data that contains the list of nodes on each row? The presence of a node in a row would increase the prominence of that node on the graph (or the prominence/weight of the edge in the relationship between two nodes).
I assume some transformation would be required to get the data into the appropriate format for NetworkX (or similar) to be able to create the graph relationships.
Thanks!
Share Improve this question edited 15 hours ago alpacafondue asked 17 hours ago alpacafonduealpacafondue 4031 gold badge7 silver badges19 bronze badges 3- Your example is unclear. How do you define the edges? For instance why is there no edge between 0 and 1? – mozway Commented 17 hours ago
- That was a mistake! Yes there should be a line 0 to 1 – alpacafondue Commented 15 hours ago
- Got is, thanks for the clarification – mozway Commented 15 hours ago
1 Answer
Reset to default 0Since you have lists, using pandas would not be more efficient.
You could use itertools
to enumerate the edges, and collections.Counter
to count them, then build the graph and plot with a width based on the weight:
from itertools import combinations, chain
from collections import Counter
import networkx as nx
c = Counter(chain.from_iterable(combinations(sorted(l), 2) for l in df['nodes']))
G = nx.Graph()
G.add_weighted_edges_from((*e, w) for e, w in c.items())
pos = nx.spring_layout(G)
nx.draw_networkx(G, pos)
for *e, w in G.edges(data='weight'):
nx.draw_networkx_edges(G, pos, edgelist=[e], width=w)
Output:
Used input:
df = pd.DataFrame({'user': ['A', 'B', 'C'],
'nodes': [[0, 1, 3], [1, 2, 4], [0, 3]],
})
本文标签:
版权声明:本文标题:python - Build aggregated network graph from Pandas dataframe containing a column with list of nodes for each row? - Stack Overf 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743759787a2534144.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论