Python Radar Charts (AKA - Spider Charts, Star Charts)

Описание к видео Python Radar Charts (AKA - Spider Charts, Star Charts)

In this python tutorial, we will go over how to create radar charts using matplotlib and pygal.

Jupyter Notebook on GitHub: https://github.com/groundhogday321/py...

IMPORTANT NOTE:

If Receiving Error for Matplotlib Radar Chart: ValueError: The number of FixedLocator locations (6), usually from a call to set_ticks, does not match the number of ticklabels (5).
A simple work around fix is to add the first item in the categories list to the list again at the end. Like this:

data
categories = ['Fuel Economy', 'Reliability', 'Comfort', 'Design', 'Repair Costs', 'Fuel Economy']

I have also added an example of how to create radar charts with plotly to GitHub along with the existing examples.

Комментарии

Информация по комментариям в разработке