Adicionando uma coluna de zeros a um csr_matrix

Eu tenho um MxN escassocsr_matrix, e gostaria de adicionar algumas colunas com apenas zeros à direita da matriz. Em princípio, as matrizesindptr, indices edata mantenha o mesmo, então eu só quero mudar as dimensões da matriz. No entanto, isso parece não ter sido implementado.

>>> A = csr_matrix(np.identity(5), dtype = int)
>>> A.toarray()
array([[1, 0, 0, 0, 0],
       [0, 1, 0, 0, 0],
       [0, 0, 1, 0, 0],
       [0, 0, 0, 1, 0],
       [0, 0, 0, 0, 1]])
>>> A.shape
(5, 5)
>>> A.shape = ((5,7))
NotImplementedError: Reshaping not implemented for csr_matrix.

Também o empilhamento horizontal de uma matriz zero parece não funcionar.

>>> B = csr_matrix(np.zeros([5,2]), dtype = int)
>>> B.toarray()
array([[0, 0],
       [0, 0],
       [0, 0],
       [0, 0],
       [0, 0]])
>>> np.hstack((A,B))
array([ <5x5 sparse matrix of type '<type 'numpy.int32'>'
    with 5 stored elements in Compressed Sparse Row format>,
       <5x2 sparse matrix of type '<type 'numpy.int32'>'
    with 0 stored elements in Compressed Sparse Row format>], dtype=object)

É isso que eu quero alcançar eventualmente. Existe uma maneira rápida de remodelar meucsr_matrix sem copiar tudo nele?

>>> C = csr_matrix(np.hstack((A.toarray(), B.toarray())))
>>> C.toarray()
array([[1, 0, 0, 0, 0, 0, 0],
       [0, 1, 0, 0, 0, 0, 0],
       [0, 0, 1, 0, 0, 0, 0],
       [0, 0, 0, 1, 0, 0, 0],
       [0, 0, 0, 0, 1, 0, 0]])

questionAnswers(2)

yourAnswerToTheQuestion