From 22a023da5f08c910272d6ce2a283e774e361aab6 Mon Sep 17 00:00:00 2001 From: Azalee Bostroem Date: Mon, 8 Dec 2025 17:00:13 -0700 Subject: [PATCH] making Latex labels raw strings --- student_download/episode_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/student_download/episode_functions.py b/student_download/episode_functions.py index 245fc172..e8112947 100644 --- a/student_download/episode_functions.py +++ b/student_download/episode_functions.py @@ -124,8 +124,8 @@ def plot_cmd_selection(df): plt.plot(x, y, 'ko', markersize=0.7, alpha=0.9) - plt.xlabel('$\phi_1$ [deg]') - plt.ylabel('$\phi_2$ [deg]') + plt.xlabel(r'$\phi_1$ [deg]') + plt.ylabel(r'$\phi_2$ [deg]') plt.title('Proper motion + photometry selection', fontsize='medium') plt.axis('equal')