【问题标题】:Create NetworkX graph from similarity matrix从相似度矩阵创建 NetworkX 图
【发布时间】:2021-01-09 14:58:06
【问题描述】:

我是图表世界的新手,希望能得到一些帮助 :-)

我有一个包含 10 个句子的数据框,我计算了每个句子之间的余弦相似度。

原始数据框:

    text
0   i like working with text    
1   my favourite colour is blue and i like beans
2   i have a cat and a dog that are both chubby Pets
3   reading is also working with text just in anot...
4   cooking is great and i love making beans with ...
5   my cat likes cheese and my dog likes beans
6   in some way text is a bit boring
7   cooking is stressful when it is too complicated
8   pets can be so cute but they are often a lot o...
9   working with pets would be a dream job

计算余弦相似度:

from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import cosine_similarity

k = test_df['text'].tolist()

# Vectorise the data
vec = TfidfVectorizer()
X = vec.fit_transform(k) 

# Calculate the pairwise cosine similarities 
S = cosine_similarity(X)

# add output to new dataframe 
print(len(S))
T  = S.tolist()
df = pd.DataFrame.from_records(T)

余弦相似度的输出:

    0   1   2   3   4   5   6   7   8   9
0   1.000000    0.204491    0.000000    0.378416    0.110185    0.000000    0.158842    0.000000    0.000000    0.282177
1   0.204491    1.000000    0.072468    0.055438    0.333815    0.327299    0.064935    0.112483    0.000000    0.000000
2   0.000000    0.072468    1.000000    0.000000    0.064540    0.231068    0.000000    0.000000    0.084140    0.000000
3   0.378416    0.055438    0.000000    1.000000    0.110590    0.000000    0.375107    0.097456    0.000000    0.156774
4   0.110185    0.333815    0.064540    0.110590    1.000000    0.205005    0.057830    0.202825    0.000000    0.071145
5   0.000000    0.327299    0.231068    0.000000    0.205005    1.000000    0.000000    0.000000    0.000000    0.000000
6   0.158842    0.064935    0.000000    0.375107    0.057830    0.000000    1.000000    0.114151    0.000000    0.000000
7   0.000000    0.112483    0.000000    0.097456    0.202825    0.000000    0.114151    1.000000    0.000000    0.000000
8   0.000000    0.000000    0.084140    0.000000    0.000000    0.000000    0.000000    0.000000    1.000000    0.185502
9   0.282177    0.000000    0.000000    0.156774    0.071145    0.000000    0.000000    0.000000    0.185502    1.000000

我现在想从两个数据框创建一个图,其中我的节点是通过余弦函数(边)连接的句子。我已经添加了节点,如下所示,但我不确定如何添加边?

### Build graph
G = nx.Graph()

# Add node
G.add_nodes_from(test_df['text'].tolist())


# Add edges 
G.add_edges_from()
 

【问题讨论】:

    标签: python pandas dataframe networkx cosine-similarity


    【解决方案1】:

    您可以将df 中的索引和列名设置为输入数据框(网络中的节点)中的text 列,并使用nx.from_pandas_adjacency 将其构建为邻接矩阵:

    df_adj = pd.DataFrame(df.to_numpy(), index=test_df['text'], columns=test_df['text'])
    G = nx.from_pandas_adjacency(df_adj)
    

    G.edges(data=True)
    EdgeDataView([('i like working with text    ', 'i like working with text    ', {'weight': 1.0}), 
                  ('i like working with text    ', 'my favourite colour is blue and i like beans', {'weight': 0.19953178577876396}),
                  ('i like working with text    ', 'reading is also working with text just in anot...', {'weight': 0.39853956570404026})
                  ...
    

    【讨论】:

      猜你喜欢
      • 2017-06-13
      • 2022-01-12
      • 2011-05-09
      • 2013-08-28
      • 2022-07-10
      • 2013-09-15
      • 2021-05-12
      • 1970-01-01
      • 2015-10-17
      相关资源
      最近更新 更多