就地交换行#
- sklearn.utils.sparsefuncs.inplace_swap_row(X, m, n)[source]#
就地交换CSC/CSR矩阵的两行。
- 参数:
- X形状为 (n_samples, n_features) 的稀疏矩阵
需要交换两行的矩阵。它应该是CSR或CSC格式。
- mint
要交换的X的行索引。
- nint
要交换的X的行索引。
示例
>>> 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_row(csr, 0, 1) >>> csr.todense() matrix([[0, 0, 5], [8, 0, 2], [0, 0, 0], [0, 0, 0]])