每天在地铁上刷着疫情的数据与新闻,希望能看到更多的好消息。
最近看到大家都在写疫情的实时数据地图,作为测试工程师,当然也不能落下。
下面的程序是通过Python生成实时生成数据分布图,全国和每个省份。
# 地图绘制
from pyecharts import options as opts
from pyecharts.charts import Map
import random
regions=alldfregiongbmax['Country_Region'].to_list()
regions2=[]
for i in range(len(regions)):
regions2.append(regions[i])
regions2
data=[(i,alldfregiongbmax[alldfregiongbmax['Country_Region']==i]['Confirmed'].to_list()) for i in regions2]
data
imap=(
Map(
init_opts=opts.InitOpts(bg_colo
1