gpt4 book ai didi

python - 将非数字元组转换为 numpy 矩阵

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:35 24 4
gpt4 key购买 nike

我试图通过一个非常大的元组列表来表示一个邻接矩阵。我将如何在 numpy 矩阵或 scipy.sparse 矩阵中表示此列表,以便使用像 igraph 或 networkx 这样的包?

[('b', 'c'),
('b', 'a'),
('c', 'd'),
('c', 'a'),
('c', 'b'),
('a', 'b'),
('a', 'c')]

如果这是重复的,我深表歉意,但我找不到任何关于如何将非数字元组转换为邻接矩阵的文档。

最佳答案

您可以使用 np.unique 将您的节点转换为索引:

>>> adj = [('b', 'c'),
... ('b', 'a'),
... ('c', 'd'),
... ('c', 'a'),
... ('c', 'b'),
... ('a', 'b'),
... ('a', 'c')]
>>> node_names, adj_idx = np.unique(adj, return_inverse=True)
>>> node_names
array(['a', 'b', 'c', 'd'],
dtype='|S1')
>>> adj_idx = adj_idx.reshape(-1, 2)
>>> adj_idx
array([[1, 2],
[1, 0],
[2, 3],
[2, 0],
[2, 1],
[0, 1],
[0, 2]])

据此,您可以将密集邻接矩阵构造为:

>>> adj_matrix = np.zeros((len(node_names),)*2)
>>> adj_matrix[adj_idx[:, 0], adj_idx[:, 1]] = 1
>>> adj_matrix
array([[ 0., 1., 1., 0.],
[ 1., 0., 1., 0.],
[ 1., 1., 0., 1.],
[ 0., 0., 0., 0.]])

或稀疏格式为:

>>> sps_adj_mat = sps.coo_matrix((np.ones(shape=(len(adj_idx),)),
... (adj_idx[:, 0], adj_idx[:, 1])),
... shape=(len(node_names),)*2)
>>> sps_adj_mat
<4x4 sparse matrix of type '<type 'numpy.float64'>'
with 7 stored elements in COOrdinate format>
>>> sps_adj_mat.A
array([[ 0., 1., 1., 0.],
[ 1., 0., 1., 0.],
[ 1., 1., 0., 1.],
[ 0., 0., 0., 0.]])

关于python - 将非数字元组转换为 numpy 矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21324774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com