Session Ready
Exercise

Council district areas and permit counts

In order to create a normalized value for the building permits issued in each council district, you will need to find the area of each council district. Remember that you can leverage the area attribute of a GeoSeries to do this. You will need to convert permit_counts to a DataFrame so you can merge it with the council_districts data. Both permit_counts and council_districts are in your workspace.

Instructions 1/4
undefined XP
  • 1
  • 2
  • 3
  • 4
  • Get the area of each council district and store it in a new column, area, in the council_districts GeoDataFrame. Print the first two rows.