Skip to content

Commit

Permalink
more graph
Browse files Browse the repository at this point in the history
  • Loading branch information
leliel12 committed Jun 8, 2017
1 parent 8f592da commit ab92c60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion skcriteria/plot/radar.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ def radar_plot(mtx, criteria, weights, anames, cnames,
labels = [
"{}\n(w.{:.2f})".format(cn, cw) for cn, cw in zip(cnames, weights)]

ax = ax or plt.gca()
if ax is None:
fig = plt.gcf()
ax =
import ipdb; ipdb.set_trace()
#~ fig, ax = plt.subplots(nrows=1, ncols=1,
#~ subplot_kw=dict(projection='radar'))
Expand Down

0 comments on commit ab92c60

Please sign in to comment.