Graph Analytics: CSR Projection
The GraphView projects into Compressed Sparse Row for OLAP:
out_offsets: [ 0, 2, 4, 5, 7 ]
out_targets: [ 1, 3, 0, 2, 3, 0, 1 ]
weights: [1.0,2.0,1.0,3.0,1.0,2.0,4.0]
14 algorithms across 5 categories:
| Category |
Algorithms |
| Centrality |
PageRank (with dangling redistribution), LCC (directed + undirected) |
| Community |
WCC (Union-Find), SCC (Tarjan), CDLP, Triangle Counting |
| Pathfinding |
BFS, Dijkstra, BFS All Shortest Paths |
| Network Flow |
Edmonds-Karp (Max Flow), Prim's MST |
| Statistical |
PCA (Randomized SVD + Power Iteration) |