【问题标题】:Networkx Multigraph from_pandas_dataframeNetworkx Multigraph from_pandas_dataframe
【发布时间】:2019-01-02 22:38:27
【问题描述】:

更新:
所写的问题与 Networkx 版本 from_pandas_dataframe 方法 has been dropped
要在 Networkx >= 2.0 中完成相同的任务,请参阅已接受答案的更新。

尝试使用 networkx 的 from_pandas_dataframe 从 pandas DataFrame 创建一个 MultiGraph() 实例。在下面的示例中我做错了什么?

In [1]: import pandas as pd
        import networkx as nx

        df = pd.DataFrame([['geneA', 'geneB', 0.05, 'method1'],
                           ['geneA', 'geneC', 0.45, 'method1'],
                           ['geneA', 'geneD', 0.35, 'method1'],
                           ['geneA', 'geneB', 0.45, 'method2']], 
                           columns = ['gene1','gene2','conf','type'])

首先尝试使用默认的 nx.Graph():

In [2]: G= nx.from_pandas_dataframe(df, 'gene1', 'gene2', edge_attr=['conf','type'], 
                                    create_using=nx.Graph())

作为非 MultiGraph(),我缺少一条重复的边:

In [3]: G.edges(data=True)
Out[3]: [('geneA', 'geneB', {'conf': 0.45, 'type': 'method2'}),
         ('geneA', 'geneC', {'conf': 0.45, 'type': 'method1'}),
         ('geneA', 'geneD', {'conf': 0.35, 'type': 'method1'})]

MultiGraph():

In [4]: MG= nx.from_pandas_dataframe(df, 'gene1', 'gene2', edge_attr=['conf','type'], 
                             create_using=nx.MultiGraph())

这个:

TypeError                                 Traceback (most recent call last)
<ipython-input-49-d2c7b8312ea7> in <module>()
----> 1 MG= nx.from_pandas_dataframe(df, 'gene1', 'gene2', ['conf','type'], create_using=nx.MultiGraph())

/usr/lib/python2.7/site-packages/networkx-1.10-py2.7.egg/networkx/convert_matrix.pyc in from_pandas_dataframe(df, source, target, edge_attr, create_using)
    209         # Iteration on values returns the rows as Numpy arrays
    210         for row in df.values:
--> 211             g.add_edge(row[src_i], row[tar_i], {i:row[j] for i, j in edge_i})
    212 
    213     # If no column names are given, then just return the edges.

/usr/lib/python2.7/site-packages/networkx-1.10-py2.7.egg/networkx/classes/multigraph.pyc in add_edge(self, u, v, key, attr_dict, **attr)
    340             datadict.update(attr_dict)
    341             keydict = self.edge_key_dict_factory()
--> 342             keydict[key] = datadict
    343             self.adj[u][v] = keydict
    344             self.adj[v][u] = keydict

TypeError: unhashable type: 'dict'

问题 如何从 pandas 数据框中实例化 MultiGraph()

【问题讨论】:

    标签: python pandas networkx


    【解决方案1】:

    Networkx
    这是一个错误,我在 GitHub 上打开了一个问题,一旦我提出建议 edit

    convert_matrix.py 的第 211 行更改为:

    g.add_edge(row[src_i], row[tar_i], attr_dict={i:row[j] for i, j in edge_i})
    

    该更改的结果:(已被合并)

    MG= nx.from_pandas_dataframe(df, 'gene1', 'gene2', edge_attr=['conf','type'], 
                                     create_using=nx.MultiGraph())
    
    MG.edges(data=True)
    [('geneA', 'geneB', {'conf': 0.05, 'type': 'method1'}),
             ('geneA', 'geneB', {'conf': 0.45, 'type': 'method2'}),
             ('geneA', 'geneC', {'conf': 0.45, 'type': 'method1'}),
             ('geneA', 'geneD', {'conf': 0.35, 'type': 'method1'})]
    

    Networkx >= 2.0:
    在这种格式(边缘列表)的DataFrames中,使用from_pandas_edgelist

    MG= nx.from_pandas_edgelist(df, 'gene1', 'gene2', edge_attr=['conf','type'], 
                                 create_using=nx.MultiGraph())
    
    MG.edges(data=True)
    MultiEdgeDataView([('geneA', 'geneB', {'conf': 0.05, 'type': 'method1'}),
                       ('geneA', 'geneB', {'conf': 0.45, 'type': 'method2'}),
                       ('geneA', 'geneC', {'conf': 0.45, 'type': 'method1'}), 
                       ('geneA', 'geneD', {'conf': 0.35, 'type': 'method1'})])
    

    【讨论】:

    【解决方案2】:

    这是一个很好的问题。我试图以不同的方式重现您构建MultiGraph() 的问题,仅使用三/四列:

    MG = nx.MultiGraph()
    
    MG.add_weighted_edges_from([tuple(d) for d in df[['gene1','gene2','conf']].values])
    

    这正确返回为MG.edges(data=True):

    [('geneA', 'geneB', {'weight': 0.05}), ('geneA', 'geneB', {'weight': 0.45}), ('geneA', 'geneC', {'weight': 0.45}), ('geneA', 'geneD', {'weight': 0.35})]
    

    我也尝试使用您的 from_pandas_dataframe 方法,只使用三列,但它不起作用:

    MG = nx.from_pandas_dataframe(df, 'gene1', 'gene2', edge_attr='conf', create_using=nx.MultiGraph())
    

    这将返回您遇到的相同错误。我不知道这是一个错误还是该方法不支持MultiGraph() 的多个权重类型。与此同时,您可以使用上述解决方法来构建您的 MultiGraph,至少只有一种权重类型。希望对您有所帮助。

    【讨论】:

    • 我现在将使用解决方法,谢谢,有兴趣看看是否有人遇到过类似的错误。
    • @Kevin ...2 年后,我遇到了同样的错误。就我而言,我正在尝试创建一个MultiDiGraph(),但遇到了与您相同的错误。这个答案也解决了我的问题
    猜你喜欢
    • 2018-08-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-12-30
    • 1970-01-01
    • 1970-01-01
    • 2014-05-09
    • 2012-07-03
    相关资源
    最近更新 更多