File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -920,3 +920,4 @@ Bug Fixes
920
920
- Bug in plotting methods modifying the global matplotlib rcParams (:issue:`8242`).
921
921
- Bug in ``DataFrame.__setitem__`` that caused errors when setting a dataframe column to a sparse array (:issue:`8131`)
922
922
- Bug where ``Dataframe.boxplot()`` failed when entire column was empty (:issue:`8181`).
923
+ - Bug with messed variables in ``radviz`` visualization (:issue:`8199`).
Original file line number Diff line number Diff line change @@ -405,10 +405,10 @@ def normalize(series):
405
405
for kls in classes :
406
406
to_plot [kls ] = [[], []]
407
407
408
- n = len (frame .columns ) - 1
408
+ m = len (frame .columns ) - 1
409
409
s = np .array ([(np .cos (t ), np .sin (t ))
410
- for t in [2.0 * np .pi * (i / float (n ))
411
- for i in range (n )]])
410
+ for t in [2.0 * np .pi * (i / float (m ))
411
+ for i in range (m )]])
412
412
413
413
for i in range (n ):
414
414
row = df .iloc [i ].values
You can’t perform that action at this time.
0 commit comments