chloropleth

Plotly Chloropleth combined with ScatterGeo

Plotly Choropleth combined with ScatterGeo Question: Can anyone help me spot the error here? fig = go.Figure() fig.add_trace( go.Choroplethmapbox( geojson=counties, locations=df_se[‘FIPS’], z=df_se[‘use_values’], colorscale=”Viridis”, zmin=min(df_se[‘use_values’]), zmax=max(df_se[‘use_values’]), marker_opacity=0.5, marker_line_width=0 )) fig.add_trace( go.Scattergeo( lon = df_jake[‘lng’], lat = df_jake[‘lat’], text = df_jake[‘Name’]+’, ‘+df_jake[‘Link’], mode = ‘markers’ )) fig.update_layout() fig.show() It just shows up blank. I can plot Chloropleth …

Total answers: 1