inplace_swap_column#

sklearn.utils.sparsefuncs.inplace_swap_column(X, m, n)#

交换CSC/CSR矩阵的两列,原地操作。

Parameters:
X形状为(n_samples, n_features)的稀疏矩阵

需要交换两列的矩阵。应为CSR或CSC格式。

mint

X中要交换的列的索引。

nint

X中要交换的列的索引。

Examples

>>> from sklearn.utils import sparsefuncs
>>> from scipy import sparse
>>> import numpy as np
>>> indptr = np.array([0, 2, 3, 3, 3])
>>> indices = np.array([0, 2, 2])
>>> data = np.array([8, 2, 5])
>>> csr = sparse.csr_matrix((data, indices, indptr))
>>> csr.todense()
matrix([[8, 0, 2],
        [0, 0, 5],
        [0, 0, 0],
        [0, 0, 0]])
>>> sparsefuncs.inplace_swap_column(csr, 0, 1)
>>> csr.todense()
matrix([[0, 8, 2],
        [0, 0, 5],
        [0, 0, 0],
        [0, 0, 0]])