Networkx Multigraph from_pandas_dataframe

时间:2016-02-04 20:14:04

标签: python pandas networkx

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

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

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()

2 个答案:

答案 0 :(得分:8)

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

它将db.execSQL("create table " + TABLE_NAME + " (ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT, EMAIL TEXT, PASS TEXT)"); 的第211行更改为:

convert_matrix.py

该变更的结果:(已被纳入)

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

Networkx&gt; = 2.0:
在具有此格式(边缘列表)的DataFrame中,使用from_pandas_edgelist

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'})]

答案 1 :(得分:4)

这是一个很好的问题。我尝试以不同的方式重现您的问题,仅使用三个/四个列来构建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,至少只有一种权重类型。希望有所帮助。