Browse Source

limit scatter plot to 2011

Fabian Peter Hammerle 4 years ago
parent
commit
d1ca680da5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pollution.ipynb

+ 2 - 2
pollution.ipynb

@@ -72,8 +72,8 @@
     ")\n",
     "ax.set_xlim(-28, 32)\n",
     "ax.set_ylim(32, 75)\n",
-    "ax.set_title('E-PRTR_database_v17_xls.zip / Pollutant releases.xlsx')\n",
-    "pollutant_releases_geo.plot(ax=ax, markersize=0.1);"
+    "ax.set_title('E-PRTR_database_v17_xls.zip / Pollutant releases.xlsx / 2011')\n",
+    "pollutant_releases_geo[pollutant_releases_geo.ReportingYear == 2011].plot(ax=ax, markersize=0.1);"
    ]
   },
   {