avichr commited on
Commit
f2fdbae
1 Parent(s): 24c0e03

Update spider_plot.py

Browse files
Files changed (1) hide show
  1. 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)