python - 来自边缘列表的 Scipy 稀疏矩阵

标签 python r matrix scipy sna

如何将 edge list ( data ) 转换为 python scipy sparse matrix 以获得这个结果:

sparse matrix in R

数据集(其中“agn”是节点类别一,“fct”是节点类别二):

data['agn'].tolist()
['p1', 'p1', 'p1', 'p1', 'p1', 'p2', 'p2', 'p2', 'p2', 'p3', 'p3', 'p3', 'p4', 'p4', 'p5']

data['fct'].tolist()
['f1', 'f2', 'f3', 'f4', 'f5', 'f3', 'f4', 'f5', 'f6', 'f5', 'f6', 'f7', 'f7', 'f8', 'f9']

(不工作)python 代码:

from scipy.sparse import csr_matrix, coo_matrix

csr_matrix((data_sub['agn'].values, data['fct'].values), 
                    shape=(len(set(data['agn'].values)), len(set(data_sub['fct'].values))))

-> 错误:“类型错误:输入格式无效” 我真的需要三个数组来构建矩阵,就像 scipy csr 文档中的示例所建议的那样(只能使用两个链接,抱歉!)?

(有效)R 代码用于构建仅包含两个向量的矩阵:

library(Matrix)

grph_tim <- sparseMatrix(i = as.numeric(data$agn), 
                     j = as.numeric(data$fct),  
                     dims = c(length(levels(data$agn)),
                              length(levels(data$fct))),
                     dimnames = list(levels(data$agn),
                                     levels(data$fct)))

编辑: 在我修改了 here 的代码后它终于工作了并添加了所需的数组:

import numpy as np
import pandas as pd
import scipy.sparse as ss

def read_data_file_as_coo_matrix(filename='edges.txt'):
    "Read data file and return sparse matrix in coordinate format."

    # if the nodes are integers, use 'dtype = np.uint32'
    data = pd.read_csv(filename, sep = '\t', encoding = 'utf-8')

    # where 'rows' is node category one and 'cols' node category 2
    rows = data['agn']  # Not a copy, just a reference.
    cols = data['fct']

    # crucial third array in python, which can be left out in r
    ones = np.ones(len(rows), np.uint32)
    matrix = ss.coo_matrix((ones, (rows, cols)))
    return matrix

此外,我将节点的字符串名称转换为整数。因此 data['agn'] 变成了 [0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4]data['fct'] 变成 [0, 1, 2, 3, 4, 2, 3, 4, 5, 4, 5, 6, 6, 7, 8]

我得到这个稀疏矩阵:

(0, 0) 1 (0, 1) 1 (0, 2) 1 (0, 3) 1 (0, 4) 1 (1, 2) 1 (1, 3) 1 (1, 4) 1 (1, 5) 1 (2, 4) 1 (2, 5) 1 (2, 6) 1 (3, 6) 1 (3, 7) 1 (4, 8) 1

最佳答案

在我修改了here的代码后,它终于起作用了。并添加了所需的数组:

import numpy as np
import pandas as pd
import scipy.sparse as ss

def read_data_file_as_coo_matrix(filename='edges.txt'):
    "Read data file and return sparse matrix in coordinate format."

    # if the nodes are integers, use 'dtype = np.uint32'
    data = pd.read_csv(filename, sep = '\t', encoding = 'utf-8')

    # where 'rows' is node category one and 'cols' node category 2
    rows = data['agn']  # Not a copy, just a reference.
    cols = data['fct']

    # crucial third array in python, which can be left out in r
    ones = np.ones(len(rows), np.uint32)
    matrix = ss.coo_matrix((ones, (rows, cols)))
    return matrix

此外,我将节点的字符串名称转换为整数。因此 data['agn'] 变成了 [0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4]data['fct'] 变成 [0, 1, 2, 3, 4, 2, 3, 4, 5, 4, 5, 6, 6, 7, 8]

我得到这个稀疏矩阵:

(0, 0) 1 (0, 1) 1 (0, 2) 1 (0, 3) 1 (0, 4) 1 (1, 2) 1 (1, 3) 1 (1, 4) 1 (1, 5) 1 (2, 4) 1 (2, 5) 1 (2, 6) 1 (3, 6) 1 (3, 7) 1 (4, 8) 1

关于python - 来自边缘列表的 Scipy 稀疏矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40399350/

相关文章:

python - 删除txt中的特定字符

r - 用 par(new=TRUE) 像两个条形图一样覆盖两个 geom_bar

r - ggplot2、facet_grid、自由尺度?

javascript - Matrix3d propertyValues 及其他

python - StringIO 生成的包含 BOM 的 csv 文件

Python:如何禁止从模块导入类?

python - 将数字转换为特殊的日期时间

r - 创建一个跨多个变量平衡的子集

r - 从r中矩阵的每一行中减去常数向量

matlab - 当第一列和第二列数字相同时第三列的平均值