Skip to content

Commit d17336f

Browse files
committed
adjust ylim for reaction time plots
1 parent e8f8ee6 commit d17336f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibllib/pipes/training_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def plot_performance_easy_median_reaction_time(df, subject):
420420

421421
y2 = {'column': 'combined_reaction_time',
422422
'title': 'Median reaction time (s)',
423-
'lim': [0.1, 10],
423+
'lim': [0.1, np.max([10, np.max(df.combined_reaction_time.values)])],
424424
'log': True}
425425
ax = plot_over_days(df, y1, y2, subject)
426426

0 commit comments

Comments
 (0)