From e61e228cebaf5133e57cd6b75f2fe333f8c53abb Mon Sep 17 00:00:00 2001 From: Sujay Shankar Date: Wed, 15 May 2024 13:07:31 -0400 Subject: [PATCH] Minor documentation tweaks --- docs/tutorials/best_fit_for_fixed_template.ipynb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/best_fit_for_fixed_template.ipynb b/docs/tutorials/best_fit_for_fixed_template.ipynb index 108f968..2ac4032 100644 --- a/docs/tutorials/best_fit_for_fixed_template.ipynb +++ b/docs/tutorials/best_fit_for_fixed_template.ipynb @@ -291,7 +291,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Awesome, we have found the RV and $v\\sin{i}$ with the closest match to the data." + "Awesome, we have found the $v\\sin{i}$ and $v_r$ with the closest match to the data." ] }, { @@ -335,8 +335,7 @@ "source": [ "ax = (data/data.flux.max()).plot(marker='.', linestyle='None')\n", "(best_spec/best_spec.flux.max()).plot(ax=ax)\n", - "title = rf'$v\\sin(i)$ = {best_vsini:0.0f} km/s, $v_r$ = {best_rv:0.1f} km/s'\n", - "ax.set_title(title)\n", + "ax.set_title(rf'$v\\sin(i)$ = {best_vsini:0.0f} km/s, $v_r$ = {best_rv:0.1f} km/s')\n", "plt.show()" ] },