I have a design matrix I'm converting in a sparse matrix using the scipy module
It have many rows and only few columns
With this shape, is it better to use the CSC or the CSR design ? Or are they strictly equivalent for the execution speed ?
Basically, it looks like this example : (But there is many more rows in the true one)
Thanks !