From 47567609f07bacfd6847d29c78cd1418c5b2628d Mon Sep 17 00:00:00 2001 From: Azalee Bostroem Date: Thu, 11 Dec 2025 09:26:23 -0700 Subject: [PATCH 1/2] changing left and right loop to color and mag loop as this is what we save in loop_df --- episodes/08-plot.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/episodes/08-plot.md b/episodes/08-plot.md index 3cf17fbc..3df775d5 100644 --- a/episodes/08-plot.md +++ b/episodes/08-plot.md @@ -466,8 +466,7 @@ what changes in the figure's appearance. plt.style.use('seaborn-bright') plot_cmd(candidate_df) -plt.plot(left_color, g, label='left color') -plt.plot(right_color, g, label='right color') +plt.plot(loop_df['color_loop'], loop_df['mag_loop'], g, label='GD1 Isochrone loop') plt.legend(); ``` From 27e0027de77fea55ec4ab9fb605adcc6de1bd55f Mon Sep 17 00:00:00 2001 From: Azalee Bostroem Date: Thu, 11 Dec 2025 09:27:47 -0700 Subject: [PATCH 2/2] changing left and right loop to color and mag loop as this is what we save in loop_df again --- episodes/08-plot.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/episodes/08-plot.md b/episodes/08-plot.md index 3df775d5..6ebc8180 100644 --- a/episodes/08-plot.md +++ b/episodes/08-plot.md @@ -487,8 +487,7 @@ plt.style.use('./az-paper-twocol.mplstyle') plot_cmd(candidate_df) -plt.plot(left_color, g, label='left color') -plt.plot(right_color, g, label='right color') +plt.plot(loop_df['color_loop'], loop_df['mag_loop'], g, label='GD1 Isochrone loop') plt.legend(); ```