Как правильно показать карту хороплета - PullRequest
0 голосов
/ 31 января 2019
threshold_scale = np.linspace(df_value_counts['Count'].min(),
                              df_value_counts['Count'].max(),
                              6, dtype=int)
threshold_scale = threshold_scale.tolist() 
threshold_scale[-1] = threshold_scale[-1] + 1 

sf_map.choropleth(
    geo_data=sf_geo,
    data=df_value_counts,
    columns=['Neighborhood', 'Count'],
key_on='feature.properties.name',
fill_color='YlOrRd', 
fill_opacity=0.7, 
line_opacity=0.2,
threshold_scale=threshold_scale,
legend_name='Crime Rate in San Francisco')

sf_map

Я хочу, чтобы карта была похожа на это , но я получаю карту типа это

Помощь !!

...