Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d06afa commit c5fd23dCopy full SHA for c5fd23d
1 file changed
examples/api/radar_chart.py
@@ -1,6 +1,12 @@
1
"""
2
Example of creating a radar chart (a.k.a. a spider or star chart) [1]_.
3
4
+Although this example allows a frame of either 'circle' or 'polygon', polygon
5
+frames don't have proper gridlines (the lines are circles instead of polygons).
6
+It's possible to get a polygon grid by setting GRIDLINE_INTERPOLATION_STEPS in
7
+matplotlib.axis to the desired number of vertices, but the orientation of the
8
+polygon is not aligned with the radial axes.
9
+
10
.. [1] http://en.wikipedia.org/wiki/Radar_chart
11
12
import numpy as np
0 commit comments