From 6c131e72f0950134acd19a619f9005463d361737 Mon Sep 17 00:00:00 2001 From: FloraSauerbronn Date: Mon, 2 Sep 2024 16:15:59 -0300 Subject: [PATCH] Fixing name at notebook --- notebooks/01-plotting_intro.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notebooks/01-plotting_intro.ipynb b/notebooks/01-plotting_intro.ipynb index 8b8ee9b..d319918 100644 --- a/notebooks/01-plotting_intro.ipynb +++ b/notebooks/01-plotting_intro.ipynb @@ -46,7 +46,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### plot_ctd\n", + "### plot_cast\n", "\n", "This method groups all the casts by their position (latitude and longitude) giving the user access to each individual cast using the index (`profile_number`) of the grouped DataFrame." ] @@ -57,7 +57,7 @@ "metadata": {}, "outputs": [], "source": [ - "fig, ax = df.plot_ctd(profile_number=0, var=\"temperature\", color=\"blue\")" + "fig, ax = df.plot_cast(profile_number=0, var=\"temperature\", color=\"blue\")" ] }, { @@ -73,10 +73,10 @@ "metadata": {}, "outputs": [], "source": [ - "fig, ax0 = df.plot_ctd(profile_number=0, var=\"temperature\", color=\"blue\")\n", + "fig, ax0 = df.plot_cast(profile_number=0, var=\"temperature\", color=\"blue\")\n", "\n", "ax1 = ax0.twiny()\n", - "df.plot_ctd(profile_number=0, var=\"salinity\", color=\"red\", ax=ax1)\n", + "df.plot_cast(profile_number=0, var=\"salinity\", color=\"red\", ax=ax1)\n", "\n", "ax0.legend()\n", "ax1.legend()"