I want to change the radar chart from the regular circle to a polygon side shape chart.
How do I code this using this example from this webpage:
https://python-graph-gallery.com/391...l-individuals/...
User Profile
Collapse
-
How do I change the shape of a radar chart?
-
Thanks for the reply but not quite what I was after but helpful.
How do I change color of the actual chart with a sequential background, starting from blue in the middle of the circle to light blue on the outer edges? -
Where would I code that into this example. I want to change the background of the radar chart with the "Blues' Sequential colormap.
...Code:# Plots a radar chart. from math import pi import matplotlib.pyplot as plt # Set data cat = ['Speed', 'Reliability', 'Comfort', 'Safety', 'Effieciency'] values = [90, 60, 65, 70, 40] N = len(cat) x_as = [n
Leave a comment:
-
Thanks for the help.
How do I code the 'Blues' from the sequential colormap as found on this page: https://matplotlib.org/tutorials/colors/colormaps.htmlLeave a comment:
-
Adding color to radar chart in python
Hello,
What code do I use to change the color background of a radar chart using python.
I want to use a sequential color scheme from light blue to dark blue.
I assume that the starting point would be from matplotlib.pypl ot using the cmaps.
Any help is appreciated.
No activity results to display
Show More
Leave a comment: