使用 NetworkX 从邻接矩阵构建具有相似值的边?

发布于 2025-01-10 05:53:39 字数 809 浏览 0 评论 0原文

我已经从如下节点构建了一个图表:

data = pd.DataFrame({
            'id': [1, 2, 3, 4, 5],
            'a': [55, 2123, -19.3, 9, -8], 
            'b': [21, -0.1, 0.003, 4, 2.1]
        })

import networkx as nx
G = nx.Graph()
for i, attr in data.set_index('id').iterrows():
    G.add_node(i, **attr.to_dict())

我已经计算了相似度矩阵(通过排除 id 列)。

from sklearn.metrics.pairwise import cosine_similarity

# Calculate the pairwise cosine similarities 
S = cosine_similarity(data.drop('id', axis=1))

T  = S.tolist()
df = pd.DataFrame.from_records(T)

这是我的 adj 矩阵:

adj_mat = pd.DataFrame(df.to_numpy(), index=data['id'], columns=data['id'])

现在,我如何使用此 adj_mat“附加”并连接节点?例如,我希望 id = 1 的节点连接到 id = 2 的节点,其边的相似度参数等于 adj 矩阵中计算的相似度。

请告知如何做。

I have build a graph from nodes like:

data = pd.DataFrame({
            'id': [1, 2, 3, 4, 5],
            'a': [55, 2123, -19.3, 9, -8], 
            'b': [21, -0.1, 0.003, 4, 2.1]
        })

import networkx as nx
G = nx.Graph()
for i, attr in data.set_index('id').iterrows():
    G.add_node(i, **attr.to_dict())

I have calculated similarity matrix (by excluding the id column).

from sklearn.metrics.pairwise import cosine_similarity

# Calculate the pairwise cosine similarities 
S = cosine_similarity(data.drop('id', axis=1))

T  = S.tolist()
df = pd.DataFrame.from_records(T)

Here is my adj matrix:

adj_mat = pd.DataFrame(df.to_numpy(), index=data['id'], columns=data['id'])

Now, how can I "attach" and connect the nodes using this adj_mat? For example I want node with id = 1 to connect to node with id = 2 with an edge with a similarity parameter equals to the similarity calculated in adj matrix.

Please advise how to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫离伤花 2025-01-17 05:53:39

通过首先从 adj 矩阵构建图表来解决:

G = nx.Graph()
G = nx.from_pandas_adjacency(df_adj)

然后循环我的节点数据,用节点的属性更新节点(并删除自循环):

G.remove_edges_from(nx.selfloop_edges(G))
for i, attr in data.set_index('id').iterrows():
    G.add_node(i, **attr.to_dict())

希望它能帮助其他人:)

Solved by firstly building the graph from adj matrix:

G = nx.Graph()
G = nx.from_pandas_adjacency(df_adj)

Then looping on my nodes data, update the nodes with their attributes (and remove the self loops):

G.remove_edges_from(nx.selfloop_edges(G))
for i, attr in data.set_index('id').iterrows():
    G.add_node(i, **attr.to_dict())

Hope it will help others :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文