Update visualization.py
Browse files- 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
|
211 |
-
tick_labels
|
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)
|