颜色未映射到叶子色谱映射

Colors not mapping to folium colorpleth map

提问人:pyphan 提问时间:11/17/2023 更新时间:11/17/2023 访问量:5

问:

我正在尝试将我使用 folium 创建的文件中的数据绘制到美国地图。颜色没有绘制在地图上 - 地图是全黑的。“报告的病例数”值范围为 0 到 106。

`threshold_scale = [0, max * 0.25, max * 0.5, max * 0.75, max]

color_map.caption = 'Rate by State'

folium.Choropleth(
    geo_data=state_geo,
    name="choropleth",
    data=df,
    columns=["State", "Reported Cases"],
    key_on="feature.id",
    fill_color='BuPu',
    fill_opacity=0.7,
    line_opacity=.1, 
    threshold_scale = threshold_scale,
    legend_name="Incidence Rate by State",

).add_to(m)

folium.LayerControl().add_to(m)

# Add the color map to the map
m.add_child(color_map)
m.keep_in_front(color_map)`

enter image description here任何帮助将不胜感激!

熊猫 叶子

评论


答: 暂无答案