reab5555 commited on
Commit
bc003ad
·
verified ·
1 Parent(s): 6ee70c5

Update visualization.py

Browse files
Files changed (1) hide show
  1. visualization.py +2 -2
visualization.py CHANGED
@@ -207,8 +207,8 @@ def plot_posture(df, posture_scores, color='blue', anomaly_threshold=3):
207
 
208
  max_seconds = df['Seconds'].max()
209
  num_ticks = 80
210
- tick_locations are np.linspace(0, max_seconds, num_ticks)
211
- tick_labels are [seconds_to_timecode(int(s)) for s in tick_locations]
212
 
213
  ax.set_xticks(tick_locations)
214
  ax.set_xticklabels(tick_labels, rotation=90, ha='center', fontsize=6)
 
207
 
208
  max_seconds = df['Seconds'].max()
209
  num_ticks = 80
210
+ tick_locations = np.linspace(0, max_seconds, num_ticks)
211
+ tick_labels = [seconds_to_timecode(int(s)) for s in tick_locations]
212
 
213
  ax.set_xticks(tick_locations)
214
  ax.set_xticklabels(tick_labels, rotation=90, ha='center', fontsize=6)