From 0a2964d90156cdb5fcbad051c600d235bb974237 Mon Sep 17 00:00:00 2001 From: Troy Raen Date: Thu, 15 May 2025 12:23:00 -0700 Subject: [PATCH 1/2] Reverse y-axis and zoom in --- tutorials/euclid_access/2_Euclid_intro_MER_catalog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md b/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md index 47fa475d..7cfb8b66 100644 --- a/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md +++ b/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md @@ -151,8 +151,8 @@ plt.errorbar(x, y, xerr=xerr, yerr=yerr, plt.xlabel('Y-H') plt.ylabel('Y') -plt.xlim(-10, 10) -plt.ylim(10, 35) +plt.xlim(-5, 5) +plt.ylim(30, 15) plt.title('10k Stars in MER catalog -- IRSA') ``` From 0ab746ead379582bb2cc85d63d2a118f631414f1 Mon Sep 17 00:00:00 2001 From: Troy Raen Date: Thu, 15 May 2025 14:29:19 -0700 Subject: [PATCH 2/2] Apply review feedback from @jkrick --- tutorials/euclid_access/2_Euclid_intro_MER_catalog.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md b/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md index 7cfb8b66..7f9400c5 100644 --- a/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md +++ b/tutorials/euclid_access/2_Euclid_intro_MER_catalog.md @@ -151,8 +151,9 @@ plt.errorbar(x, y, xerr=xerr, yerr=yerr, plt.xlabel('Y-H') plt.ylabel('Y') -plt.xlim(-5, 5) -plt.ylim(30, 15) +# Note that these limits exclude a handful of points with large error bars. +plt.xlim(-2, 2) +plt.ylim(24, 16) plt.title('10k Stars in MER catalog -- IRSA') ```