溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python3如何監(jiān)控疫情

發(fā)布時(shí)間:2021-08-03 10:43:37 來(lái)源:億速云 閱讀:127 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)Python3如何監(jiān)控疫情,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

具體代碼如下所示:

import requests
import json
from pyecharts.charts import Map, Geo
from pyecharts import options as opts
from pyecharts.globals import GeoType, RenderType
url = 'https://view.inews.qq.com/g2/getOnsInfo?name=disease_h6'
datas = json.loads(requests.get(url=url).json()['data'])
china = datas['areaTree'][0]['children']
data = []
for i in range(len(china)):
data.append([china[i]['name'], china[i]['total']['confirm']])
confirm = datas['chinaTotal']['confirm']
suspect = datas['chinaTotal']['suspect']
dead = datas['chinaTotal']['dead']
heal = datas['chinaTotal']['heal']
lastUpdateTime = datas['lastUpdateTime']
print(confirm, suspect, dead, lastUpdateTime)
china_total = "確診:" + str(confirm) + " 疑似:" + str(suspect) + " 死亡:" + str(dead) + " 治愈:" + str(
heal) + " 更新日期:" + lastUpdateTime
geo = (
Geo(init_opts=opts.InitOpts(width="1200px", height="600px", bg_color="#404a59", page_title="全國(guó)疫情實(shí)時(shí)報(bào)告",
renderer=RenderType.SVG, theme="white")) # 設(shè)置繪圖尺寸,背景色,頁(yè)面標(biāo)題,繪制類型
.add_schema(maptype="china", itemstyle_opts=opts.ItemStyleOpts(color="rgb(49,60,72)",
border_color="rgb(0,0,0)")) # 中國(guó)地圖,地圖區(qū)域顏色,區(qū)域邊界顏色
.add(series_name="geo", data_pair=data, type_=GeoType.EFFECT_SCATTER) # 設(shè)置地圖數(shù)據(jù),動(dòng)畫(huà)方式為漣漪特效effect scatter
.set_series_opts( # 設(shè)置系列配置
label_opts=opts.LabelOpts(is_show=False), # 不顯示Label
effect_opts=opts.EffectOpts(scale=6)) # 設(shè)置漣漪特效縮放比例
.set_global_opts( # 設(shè)置全局系列配置
# visualmap_opts=opts.VisualMapOpts(min_=0, max_=sum / len(datas)), # 設(shè)置視覺(jué)映像配置,最大值為平均值
title_opts=opts.TitleOpts(title="全國(guó)疫情地圖", subtitle=china_total, pos_left="center", pos_top="10px",
title_textstyle_opts=opts.TextStyleOpts(color="#fff")),
# 設(shè)置標(biāo)題,副標(biāo)題,標(biāo)題位置,文字顏色
legend_opts=opts.LegendOpts(is_show=False), # 不顯示圖例
)
)
geo.render(path="./render.html")

運(yùn)行的效果圖

Python3如何監(jiān)控疫情

關(guān)于“Python3如何監(jiān)控疫情”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI