Skip to content

Commit 9bac542

Browse files
adding alpha so we can see a bit better if the metrics overlap
1 parent ba1fe4c commit 9bac542

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/aind_dynamic_foraging_basic_analysis/plot/plot_session_scroller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def plot_metric(df_trials, go_cue_times, metric, ax):
487487
# plot metrics for this axis
488488
for m in metric_names:
489489
if m in df_trials:
490-
ax.plot(go_cue_times, df_trials[m], label=m)
490+
ax.plot(go_cue_times, df_trials[m], label=m, alpha=0.7)
491491
else:
492492
raise Exception("metric not in df_trials: {}".format(m))
493493

0 commit comments

Comments
 (0)