- What is the difference between a chord diagram and a Sankey diagram?
- Sankey diagrams show directional flow from source to destination, with nodes in a linear layout. Chord diagrams show bidirectional relationships between entities arranged in a circle, emphasizing mutual exchange rather than directional flow.
- What data format does the input require?
- A square matrix (CSV or JSON) where each cell [i][j] contains the flow value from entity i to entity j. The diagonal is typically 0. The tool also accepts an edge list format (source, target, value).
- When is a chord diagram not appropriate?
- When the relationships are directional and asymmetric (use Sankey), when there are more than 15-20 entities (use a heatmap or network graph), or when precise value comparison matters more than pattern recognition (use a matrix chart).