Visualizations Chord
Radius scales
The inner and outer radius scales of the Chord diagram can be adjusted. This will change the thickness of the arcs.
Sample data
Let's import PlotAPI and load our sample data.
from plotapi import Chord
matrix = [
[0, 5, 6, 4, 7, 4],
[5, 0, 5, 4, 6, 5],
[6, 5, 0, 4, 5, 5],
[4, 4, 4, 0, 5, 5],
[7, 6, 5, 5, 0, 4],
[4, 5, 5, 5, 4, 0],
]
names = ["Action", "Adventure", "Comedy", "Drama", "Fantasy", "Thriller"]
Demonstration
We can control the radius scales by setting the inner_radius_scale
and outer_radius_scale
parameters.
Chord(matrix, names,
inner_radius_scale=0.3, outer_radius_scale=1.5).show()