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

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 地图绘制钦州时,钦南区数据点消失,如何解决?的详细内容,更多请关注其它相关文章!