Skip to content

Commit

Permalink
Fix bug where not all columns were plotted in labels over time
Browse files Browse the repository at this point in the history
  • Loading branch information
ejhusom committed Mar 19, 2024
1 parent 80979a0 commit 63e40bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cluster_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,10 +569,10 @@ def plot_labels_over_time(



j = 0

for i in range(n_features):
# for j in range(n_labels):
j = 0
while j < n_labels:

start = j * step
Expand Down Expand Up @@ -735,10 +735,10 @@ def plot_labels_over_time_matplotlib(
nth = min(int(window_size / np.log(window_size)), window_size)
nth = 10000

j = 0

for i in range(n_features):
# for j in range(n_labels):
j = 0
while j < n_labels:

start = j * step
Expand Down

0 comments on commit 63e40bf

Please sign in to comment.