शुरू करेंमुफ़्त में शुरू करें

Folium choropleth

In this exercise, you will construct a folium choropleth to show the density of permitted construction projects in different Nashville council districts. You will be using a single data source, the districts_and_permits GeoDataFrame, which has been pre-loaded for you.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Visualizing Geospatial Data in Python

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Center point for Nashville
nashville = [36.1636,-86.7823]

# Create map
m = folium.Map(location=____, zoom_start=10)
कोड संपादित करें और चलाएँ