From a8ccaea0cf0dc84d462b7393f103eafc824ca3cb Mon Sep 17 00:00:00 2001 From: toravest Date: Sat, 24 May 2025 10:14:59 +0200 Subject: [PATCH] change comment fig output folder --- notebooks/notebook_compare_one_week_data.ipynb | 2 +- notebooks/notebook_compare_statistic_data.ipynb | 4 ++-- notebooks/notebook_one_week_data.ipynb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/notebooks/notebook_compare_one_week_data.ipynb b/notebooks/notebook_compare_one_week_data.ipynb index 34a6aa4..066d7f8 100644 --- a/notebooks/notebook_compare_one_week_data.ipynb +++ b/notebooks/notebook_compare_one_week_data.ipynb @@ -515,7 +515,7 @@ "# Add label for x-axis\n", "ax3.set_xlabel('Datetime')\n", "\n", - "# Save the plot to the data/output_fig folder\n", + "# Save the plot to the 'data/figures/output_fig_compare_one_week' folder\n", "plot_path = os.path.join(output_folder, f\"weather_compare_plot_{city_1}_{city_2}.png\")\n", "# Save the plot as a PNG file\n", "plt.savefig(plot_path)\n", diff --git a/notebooks/notebook_compare_statistic_data.ipynb b/notebooks/notebook_compare_statistic_data.ipynb index 9821391..aec67f8 100644 --- a/notebooks/notebook_compare_statistic_data.ipynb +++ b/notebooks/notebook_compare_statistic_data.ipynb @@ -234,7 +234,7 @@ "# Import the kelvin to celsius function\n", "from my_package.util import kelvin_to_celsius\n", "\n", - "output_folder = \"../data/output_fig\"\n", + "output_folder = \"../data/figures/output_fig_compare_statistic\"\n", "os.makedirs(output_folder, exist_ok=True) # Create the folder if it doesn't exist\n", "\n", "both_cities_df['temp.mean_celsius'] = kelvin_to_celsius(both_cities_df['temp.mean'])\n", @@ -354,7 +354,7 @@ "plt.title(f\"Statistic weather data for ({city_1} and {city_2})\")\n", "plt.tight_layout()\n", "\n", - "# Save the plot to the data/output_fig folder\n", + "# Save the plot to the 'data/figures/output_fig_compare_statistic' folder\n", "plot_path = os.path.join(output_folder, f\"mean_temp_plot_{city_1}_{city_2}.png\")\n", "plt.savefig(plot_path) # Save the plot as a PNG file\n", "\n", diff --git a/notebooks/notebook_one_week_data.ipynb b/notebooks/notebook_one_week_data.ipynb index 37cc5e0..8c9b5ea 100644 --- a/notebooks/notebook_one_week_data.ipynb +++ b/notebooks/notebook_one_week_data.ipynb @@ -447,7 +447,7 @@ "# Adjust layout\n", "plt.tight_layout()\n", "\n", - "# Save the plot to the data/output_fig folder\n", + "# Save the plot to the 'data/figures/output_fig_one_week' folder\n", "plot_path = os.path.join(output_folder, f\"weather_data_plot{city_name}.png\")\n", "plt.savefig(plot_path) # Save the plot as a PNG file\n", "\n",