7

我正在 python 3 中构建 networkx 图。我正在使用 pandas 数据框来为图提供边和节点。这是我所做的:

test = pd.read_csv("/home/Desktop/test_call1", delimiter = ';')

g_test = nx.from_pandas_edgelist(test, 'number', 'contactNumber', edge_attr='callDuration')

我想要的是熊猫数据框的“callDuration”列作为networkx图的边的权重,边的粗细也相应地改变。

我还想获得“n”个最大加权边缘。

4

2 回答 2

8

我们试试看:

import pandas as pd
import numpy as np
import networkx as nx
import matplotlib.pyplot as plt

df = pd.DataFrame({'number':['123','234','345'],'contactnumber':['234','345','123'],'callduration':[1,2,4]})

df

G = nx.from_pandas_edgelist(df,'number','contactnumber', edge_attr='callduration')
durations = [i['callduration'] for i in dict(G.edges).values()]
labels = [i for i in dict(G.nodes).keys()]
labels = {i:i for i in dict(G.nodes).keys()}

fig, ax = plt.subplots(figsize=(12,5))
pos = nx.spring_layout(G)
nx.draw_networkx_nodes(G, pos, ax = ax, labels=True)
nx.draw_networkx_edges(G, pos, width=durations, ax=ax)
_ = nx.draw_networkx_labels(G, pos, labels, ax=ax)

输出:

在此处输入图像描述

于 2018-09-19T08:35:39.517 回答
2

不同意已经说过的话。在考虑到每个边的权重(如 pagerank 或中介中心性)的不同指标的计算中,如果将权重存储为边属性,则不会考虑您的权重。使用图表。

Add_edges(source, target, weight, *attrs)

于 2019-04-11T15:08:43.293 回答