Engaging plots, made easy.

Easily turn your data into engaging visualizations. Powerful API for coders. Powerful app for everyone.

main.py
notebook.ipynb
main.rs
from plotapi import Chord

Chord(matrix, names).show()

Visualizations Showcase

Animal Crossing Villager Species and Personality

In this notebook we're going to use PlotAPI Chord to visualise the co-occurrences between the species and personality of Animal Crossing villagers. We"ll use Python, but PlotAPI can be used from any programming language.


Preamble

from plotapi import Chord
import json

Introduction

In this notebook we're going to use PlotAPI Chord to visualise the co-occurrences between the species and personality of Animal Crossing villagers. We"ll use Python, but PlotAPI can be used from any programming language.

In a chord diagram (or radial network), entities are arranged radially as segments with their relationships visualised by ribbons that connect them. The size of the segments illustrates the numerical proportions, whilst the size of the arc illustrates the significance of the relationships. Chord diagrams are useful when trying to convey relationships between different entities, and they can be beautiful and eye-catching.

Dataset

We're going to use data from Animal Crossing New Horizons data. Previously, we made use of the data available in this repository. However, since the 2.0 update, we've created our own! Let's get loading the data.

with open("ac_species_personality.json", "r") as f:
    data = json.load(f)

Visualisation

Let's use PlotAPI Chord for this visualisation, you can see more examples in the Gallery.

We're going to adjust some layout and template parameters, and flip the intro animation on too.

Because we're using a data-table, we can also click on any part of the diagram to "lock" the selection.

plot = Chord(
    data["matrix"],
    data["names"],
    colors=data["colors"],
    details=data["details"],
    details_thumbs=data["details_thumbs"],
    noun="villagers!",
    thumbs_width=50,
    curved_labels=True,
    popup_width=600,
    bipartite=True,
    bipartite_idx=data["bipartite_idx"],
    bipartite_size=0.4,
    padding=0.0,
    width=800,
    data_table_column_width=100,
    font_size_large="16px",
    data_table=data["data_table"],
    data_table_show_indices=False
)

Display inline

plot

Upload to cloud

With our plot created, let's upload it to PlotAPI cloud and get a shareable link.

plot.upload(
    name="Animal Crossing Species and Personality",
    description='''In this project we're going to use PlotAPI Chord to visualise the co-occurrences between the species and personality of Animal Crossing villagers. We"ll use Python, but PlotAPI can be used from any programming language.''',
    maximized=True,
    full_width=True,
    public=True,
    custom_css=custom_css
)
Your visualization has been uploaded successfully! You can view and share it at https://plotapi.com/explore/view/e544dc37-305f-47ad-afbd-de32e375b68a.
Previous
Showcase