Plotly 等值线图挂在 Python 中没有错误

问题描述 投票:0回答:0

我正在使用 plotly 生成 Choropleth 地图,但是当我调用以下代码时,我的脚本没有错误地挂起。我无法弄清楚这个问题的根本原因 - 它令人困惑,因为完全相同的代码在不同的脚本中对我来说工作正常。我也在其他脚本中以完全相同的方式加载了所有依赖项。

我已经重新安装 plotly 无济于事,并关闭了脚本中的所有其他地图创建,以查看它们的运行顺序是否有任何不同。这些都没有运气。

任何建议将不胜感激 - 谢谢!

fig = px.choropleth_mapbox(salesStats, geojson=json.loads(salesStats.to_json()), 
    locations=salesStats.index, 
    color='Res_house_medianPrice_qtr10YrCagrPCI',
    color_continuous_scale=cc_scale, 
    range_color=(0, 100),
    mapbox_style="carto-positron", 
    zoom=10, center = {"lat": centroid[1], "lon": centroid[0]}, 
    opacity=0.8
    
)
python plotly choropleth
© www.soinside.com 2019 - 2024. All rights reserved.