Pyecharts 地图绘制钦州时,钦南区数据点消失,如何解决?(钦州.南区.据点.如何解决.绘制...)

wufei1232024-10-31python38

pyecharts 地图绘制钦州时,钦南区数据点消失,如何解决?

python pyecharts 地图上缺少数据点 1?

在使用 pyecharts 绘制钦州地图时,发现生成的结果中缺少了钦南区的点。

from pyecharts import options as opts
from pyecharts.charts import Geo
from pyecharts.globals import ChartType, SymbolType

c = (
    Geo()
    .add_schema(maptype="钦州", itemstyle_opts=opts.ItemStyleOpts(color="#003366", border_color="#fff"),)
    .add("", [['灵山县', 1], ['钦北区', 3], ['浦北县', 4]], type_=ChartType.EFFECT_SCATTER, color="white")
    .set_series_opts(label_opts=opts.LabelOpts(is_show=False))

以上就是Pyecharts 地图绘制钦州时,钦南区数据点消失,如何解决?的详细内容,更多请关注知识资源分享宝库其它相关文章!

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。