Skip to content

Instantly share code, notes, and snippets.

@joshreini1
Created October 7, 2022 20:22
Show Gist options
  • Save joshreini1/03674ec3cca4667ca0f6686eb9c1c198 to your computer and use it in GitHub Desktop.
Save joshreini1/03674ec3cca4667ca0f6686eb9c1c198 to your computer and use it in GitHub Desktop.
import plotly.express as px
px.set_mapbox_access_token(mapbox_token)
fig = px.scatter_mapbox(df_usa_2016.drop('year',axis=1), color = "month", lat="lat", lon="lon", size="burned_area", size_max=15, zoom=10)
fig.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment