Skip to content

Instantly share code, notes, and snippets.

@MariaLavrovskaya
Created October 13, 2019 11:59
Show Gist options
  • Save MariaLavrovskaya/20fb6cd0f557a6810e62e5f0ab596549 to your computer and use it in GitHub Desktop.
Save MariaLavrovskaya/20fb6cd0f557a6810e62e5f0ab596549 to your computer and use it in GitHub Desktop.
airbnb_5
import folium
from folium.plugins import HeatMap
m=folium.Map([40.7128,-74.0060],zoom_start=11)
HeatMap(data[['latitude','longitude']].dropna(),radius=8,gradient={0.2:'blue',0.4:'grey',0.6:'orange',1.0:'red'}).add_to(m)
display(m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment