pyecharts第十节、地图(四、省份地图)

2022-11-29 19:25:03 浏览数 (1)

上文继续

声明以下使用的包集合

代码语言:javascript复制
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyecharts==0.5.10
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple echarts-countries-pypkg
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple echarts-china-provinces-pypkg
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple echarts-china-cities-pypkg
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple echarts-china-counties-pypkg
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple echarts-china-misc-pypkg
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple echarts-united-kingdom-pypkg
pip  install pyecharts_snapshot

创建【demo13.py】输入以下编码

代码语言:javascript复制
from pyecharts import Map

quxian = ['北林区', '安达市', '肇东市', '海伦市', '望奎县', '兰西县', '青冈县', '庆安县', '明水县', '绥棱县']

values3 = [3, 5, 7, 8, 2, 4, 7, 8, 2, 4]

map3 = Map("绥化地图", "绥化", width=1200, height=600)

map3.add("绥化", quxian, values3, visual_range=[1, 10], maptype='绥化', is_visualmap=True)

map3.render(path="绥化地图.html")

效果图

 我的老家,算是祖籍了。特产,大米。

0 人点赞