Introduction
COO format helps store sparse data efficiently by saving only the positions and values of non-zero elements.
When you have a large matrix with mostly zeros and want to save memory.
When you want to quickly create a sparse matrix from lists of row, column, and data values.
When you need to perform operations on sparse matrices without converting to dense format.
When you want to store graph edges as coordinates for network analysis.