diff --git a/notebooks/notebook_compare_one_day_data.ipynb b/notebooks/notebook_compare_one_day_data.ipynb index 38e32de..64cb71f 100644 --- a/notebooks/notebook_compare_one_day_data.ipynb +++ b/notebooks/notebook_compare_one_day_data.ipynb @@ -4208,7 +4208,7 @@ ], "metadata": { "kernelspec": { - "display_name": "venv", + "display_name": "Python 3", "language": "python", "name": "python3" }, diff --git a/notebooks/notebook_compare_statistic_data.ipynb b/notebooks/notebook_compare_statistic_data.ipynb index 59d40e2..8488f47 100644 --- a/notebooks/notebook_compare_statistic_data.ipynb +++ b/notebooks/notebook_compare_statistic_data.ipynb @@ -1324,7 +1324,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "id": "83aed603", "metadata": {}, "outputs": [ @@ -1388,8 +1388,8 @@ "ax2 = ax1.twinx()\n", "\n", "# Fill between the precipitation, for an easier and more readable vizualisation\n", - "ax2.fill_between(x_axis, precipitation_city_1, color='#80C0C0', alpha=0.5, label=f'{city_1} Total', edgecolor = '#008080')\n", - "ax2.fill_between(x_axis, precipitation_city_2, color='#FFD280', alpha=0.5, label=f'{city_2} Total', edgecolor = '#FFA500')\n", + "ax2.fill_between(x_axis, precipitation_city_1, color='#80C0C0', alpha=0.5, label=f'Precipitiation {city_1}', edgecolor = '#008080')\n", + "ax2.fill_between(x_axis, precipitation_city_2, color='#FFD280', alpha=0.5, label=f'Precipitiation {city_2}', edgecolor = '#FFA500')\n", "\n", "ax2.set_ylabel(\"Precipitation (mm)\", color='tab:blue')\n", "ax2.tick_params(axis='y', labelcolor='tab:blue')\n", @@ -1521,7 +1521,7 @@ ], "metadata": { "kernelspec": { - "display_name": "venv", + "display_name": "Python 3", "language": "python", "name": "python3" }, diff --git a/notebooks/notebook_one_week_data.ipynb b/notebooks/notebook_one_week_data.ipynb index 1c3be85..a0017ad 100644 --- a/notebooks/notebook_one_week_data.ipynb +++ b/notebooks/notebook_one_week_data.ipynb @@ -176,7 +176,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "**Kommentar**: *Lagrer dataen for Jørpeland den 30.september 2024 i mappen: `data/json/output_one_week/data_kirkenes.json`. Den finnes altså i json mappen i data mappen, og er lagret i denne notebookens mappe `output_notebook_one_week` med filnavnet `data_kirkenes.json`.*" + "**Kommentar**: *Lagrer dataen for Kirkenes for perioden 3. januar til 10.januar 2025 i mappen: `data/json/output_one_week/data_kirkenes.json`. Den finnes altså i json mappen i data mappen, og er lagret i denne notebookens mappe `output_notebook_one_week` med filnavnet `data_kirkenes.json`.*" ] }, { @@ -1520,7 +1520,7 @@ ], "metadata": { "kernelspec": { - "display_name": "venv", + "display_name": "Python 3", "language": "python", "name": "python3" }, diff --git a/src/my_package/test_module.py b/src/my_package/test_module.py index 00f0438..736c49b 100644 --- a/src/my_package/test_module.py +++ b/src/my_package/test_module.py @@ -1,2 +1,6 @@ def hello(): + ''' + This is just the first test, to check if we managed to import the function to a notebook, + therefor the function only returns "Hello World!" + ''' return ("Hello World!") \ No newline at end of file