From bd73f5ab1d37d2d866dda03c02a449569f051d98 Mon Sep 17 00:00:00 2001 From: Wesley Vieira <75049150+wesleyvieira99@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:19:57 -0300 Subject: [PATCH] Update population.ipynb Adding more information in the title of the graph --- notebooks/population.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/population.ipynb b/notebooks/population.ipynb index 3800048a7..4822331e8 100644 --- a/notebooks/population.ipynb +++ b/notebooks/population.ipynb @@ -34,7 +34,7 @@ "y = df['population']\n", "\n", "plt.plot(x,y)\n", - "plt.title(\"Population of Atlantis\")\n", + "plt.title(\"Population of Atlantis per Year and Population\")\n", "plt.xlabel('Year')\n", "plt.ylabel('Population')\n", "plt.show()"