Skip to content

Commit

Permalink
Fix VisibleDeprecationWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioAPeraza committed Feb 23, 2024
1 parent 91b57c1 commit 1818b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradec/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def plot_radar(
corrs = np.array(corrs)
sorted_indices = np.argsort(-corrs)
corrs = corrs[sorted_indices]
features = np.array(features)[sorted_indices]
features = np.array(features, dtype=object)[sorted_indices]

corrs = corrs[:n_rows]
features = features[:n_rows]
Expand Down

0 comments on commit 1818b27

Please sign in to comment.