如何使用Networkx创建社交网络图

时间:2019-07-15 19:25:56

标签: python dataframe matplotlib networkx

df = pd.DataFrame(
{'company': ('XXX', 'XXX', 'XXX', 'XXX', 'XXX', 'XXX','XXX'),
 'executives': ('AB', 'AB', 'AB','BC', 'BZ', 'CD','CD'),
 'associated_companies':('ABC','ABK','ABK','XYZ','QWE','PPK','XYZ'),
'associated_people':('OP','GE','PQ','BK','TT','AZ','RJ')})

enter image description here

大家好,我有上面的数据集,我想使用Networkx创建一个社交网络图。我是这个库的新手,不确定如何将数据转换为Networkx多图格式。

预期的输出图表:

enter image description here

0 个答案:

没有答案