from scipy import sparse as sp

data = [1, 2, 3, 4, 5, 6]
rows = [0, 1, 2, 3, 4, 5]
cols = [1, 3, 0, 5, 2, 4]
obj = sp.csr_matrix((data, (rows, cols)), shape=(6, 6))

import pretty_little_summary as pls
result = pls.describe(obj)
print(result.content)
