plotly.express choropleth只显示来自geoj​​son的一些信息

时间:2020-05-23 02:29:31

标签: python pandas plotly choropleth

我正在尝试使用plotly.express创建一个Choropleth贴图,当图形加载时,它仅显示一种颜色(色标的底部),并显示单个区域的轮廓。这显然意味着它正在读取geojson,但显示不正确。

我的df如下:

     NUTS level nuts318cd  ...  2016.0    2017
 5        NUTS3     UKC11  ...  4457.0  4569.0
 6        NUTS3     UKC12  ...  4092.0  4137.0
 7        NUTS3     UKC13  ...  1692.0  1697.0
 8        NUTS3     UKC14  ...  7913.0  8088.0
 10       NUTS3     UKC21  ...  5872.0  6015.0
 ..         ...       ...  ...     ...     ...
 230      NUTS3     UKN12  ...  2256.0  2310.0
 231      NUTS3     UKN13  ...  2263.0  2287.0
 232      NUTS3     UKN14  ...  2555.0  2578.0

我的代码是:

import plotly.express as px

fig = px.choropleth(data_frame=df, geojson=spatial, locations='nuts318cd',
                       featureidkey='properties.nuts318cd', color='2017',
                       scope='europe'
                   )
fig.update_geos(showcountries=False, showcoastlines=True,
                showland=False, fitbounds="locations")
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0})
fig.show()

该项目的所有数据均可根据需要自由复制。

如果有人理解,将不胜感激。

图形输出:

enter image description here

1 个答案:

答案 0 :(得分:2)

我怀疑您在GeoJSON中遇到多边形的“缠绕”问题:https://github.com/plotly/plotly.py/issues/2354#issuecomment-638742767