Concept Flow - CSC format (Compressed Sparse Column)
Start with dense matrix
Identify non-zero elements
Store values in 'data' array
Store row indices of these values
Store column pointers in 'indptr'
Create CSC matrix object
Use for efficient column slicing and operations
CSC format stores a sparse matrix by columns: values, row indices, and column pointers for fast column access.