choropleth图不显示

时间:2019-11-27 05:09:28

标签: python choropleth

enter image description here

我的以下代码未显示预期的输出,如所附图像所示。我错过了我的代码?

gjson=r'https://cocl.us/sanfran_geojson'
Sanfransisco=folium.Map(location=[37.77, -122.42], zoom_start=12, tiles='Mapbox Bright')
Sanfransisco.choropleth(
    geo_data=gjson,
    data=df,
    columns=['Neighbourhood','Count'],
    key_on='feature.properties.District',
    fill_color='YlOrRd', 
    fill_opacity=0.7, 
    line_opacity=0.2,
    legend_name='Crime rate in Sanfransisco'

文件“”,第11行     legend_name ='旧金山的犯罪率'                                             ^ SyntaxError:解析时出现意外的EOF

1 个答案:

答案 0 :(得分:0)

您需要在函数上使用右括号。试试这个:

Sanfransisco.choropleth(
    geo_data=gjson,
    data=df,
    columns=['Neighbourhood','Count'],
    key_on='feature.properties.District',
    fill_color='YlOrRd', 
    fill_opacity=0.7, 
    line_opacity=0.2,
    legend_name='Crime rate in Sanfransisco')

我们不知道您的代码是否还有其他问题,因为我们不知道您的DataFrame的形式。