Skip to content

Commit 1bd9050

Browse files
Merge pull request #77 from AllenNeuralDynamics/overlapping_metrics
adding alpha so we can see a bit better if the metrics overlap
2 parents ba1fe4c + 9bac542 commit 1bd9050

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)