CommencerCommencer gratuitement

Finding the neighborhood with the most public art

Now that you have created art_geo, a GeoDataFrame, from the art DataFrame, you can join it spatially to the neighborhoods data to see what art is in each neighborhood.

Cet exercice fait partie du cours

Visualizing Geospatial Data in Python

Afficher le cours

Instructions

  • Merge the art_geo and neighborhoods GeoDataFrames with a spatial join to create a new GeoDataFrame called neighborhood_art. Find the art that is within neighborhoods.
  • Print the first few rows of the neighborhood art GeoDataFrame.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# import packages
import geopandas as gpd
import pandas as pd

# Spatially join neighborhoods with art_geo
neighborhood_art = gpd.____(art_geo, neighborhoods, predicate = "____")

# Print the first few rows
print(neighborhood_art.head())
Modifier et exécuter le code