Spaces:
Runtime error
Runtime error
Update spider_plot.py
Browse files- spider_plot.py +1 -1
spider_plot.py
CHANGED
@@ -18,7 +18,7 @@ def spider_plot(df):
|
|
18 |
angles += angles[:1]
|
19 |
|
20 |
# Initialise the spider plot
|
21 |
-
ax = plt.subplot(111, polar=True)
|
22 |
|
23 |
# Draw one axe per variable + add labels
|
24 |
plt.xticks(angles[:-1], categories, color='grey', size=8)
|
|
|
18 |
angles += angles[:1]
|
19 |
|
20 |
# Initialise the spider plot
|
21 |
+
fig, ax = plt.subplot(111, polar=True)
|
22 |
|
23 |
# Draw one axe per variable + add labels
|
24 |
plt.xticks(angles[:-1], categories, color='grey', size=8)
|