這篇文章主要介紹了使用pyecharts Geo實現(xiàn)動態(tài)數(shù)據(jù)熱力圖城市找不到怎么辦,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)公司主要從事成都做網(wǎng)站、網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)彭山,十載網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220pyecharts 是一個用于生成 Echarts 圖表的類庫。 Echarts 是百度開源的一個數(shù)據(jù)可視化 JS 庫。主要用于數(shù)據(jù)可視化。
本文主要是用pycharts中的Geo繪制中國地圖,在圖中顯示出各個地區(qū)的人均銷售額
傳入的數(shù)據(jù)形如:[('上海',30), ('北京',50), ... ...]
li=[] for i,row in filtered.iterrows(): li.append((row['city'],int(row['per_capita']))) geo = Geo("sales per capita", "city", title_color="#fff", title_pos="center", width=1200, height=600, background_color='#404a59') attr, value = geo.cast(li) geo.add("", attr, value, visual_range=[187, 820], visual_text_color="#fff", symbol_size=15, is_visualmap=True) geo.show_config() geo.render() geo = Geo("全國主要城市空氣質(zhì)量", "data from pm2.5", title_color="#fff", title_pos="center", width=1200, height=600, background_color='#404a59') attr, value = geo.cast(li) geo.add("", attr, value, type="heatmap", is_visualmap=True, visual_range=[200, 300], visual_text_color='#fff') geo.show_config() geo.render() geo = Geo("全國主要城市空氣質(zhì)量", "data from pm2.5", title_color="#fff", title_pos="center", width=1200, height=600, background_color='#404a59') attr, value = geo.cast(li) geo.add("", attr, value, type="effectScatter", is_random=True, effect_scale=5) geo.show_config() geo.render()
原來的包的問題是,經(jīng)緯度非常不全,一旦有找不到的,就畫不出來,方案一是把找不到的數(shù)據(jù)刪掉再畫
另一種辦法是到百度地圖api里把找不到的地方的經(jīng)緯度加進原始的包里
搜索:百度地圖api-》地圖api示例-》地址解析
復(fù)制這些經(jīng)緯度;
打開pyecharts包里的base.py,找到記錄經(jīng)緯度信息的地方,把剛才的經(jīng)緯度信息補上去
如此便可以把所有數(shù)據(jù)都呈現(xiàn)在地圖上了
如果我想動態(tài)選擇年份(2013-2017)以及選擇展現(xiàn)不同數(shù)據(jù)維度(人均消費額,總消費額)怎么辦?
這里要介紹一個python的模板引擎jinja2,該引擎仿照Django設(shè)計。模板是文本,用于分離文檔的形式和內(nèi)容,具體的介紹和用法可以看下面兩個鏈接
https://www.jb51.net/article/163962.htm
http://docs.jinkan.org/docs/jinja2/templates.html
最基本的方法是通過Template創(chuàng)建模板并且渲染
from jinja2 import Template template = Template('Hello {{string}}!') template.render(string='world')
除了普通的字符串變量,jinja2還支持列表,字典和對象,
{{ mydict['key'] }} {{ mylist[3] }} {{ mylist[myintvar] }} {{ myobj.somemethod() }} {{myobj.someattribute}}
于是我們可以通過創(chuàng)建一個字典,將不同年份不同維度的數(shù)據(jù)都放入字典中,在展示數(shù)據(jù)時,將指定數(shù)據(jù)傳入模板
options={}
for year in range(2013, 2018): options[year] = {} filtered = grouped[grouped['year'] == year] for dim in ('sales', 'per_capita'): li = [] for i, row in filtered.iterrows(): li.append((row['city'], int(row[dim]))) if dim == 'per_capita': geo = Geo(dim, "city (單位:元/人)", title_color="#fff", title_pos="center", width=1200, height=600, background_color='#404a59') attr, value = geo.cast(li) geo.add("", attr, value, visual_range=[380, 450], visual_text_color="#fff", symbol_size=15, is_visualmap=True) else: geo = Geo(dim, "city (單位:百萬)", title_color="#fff", title_pos="center", width=1200, height=600, background_color='#404a59') attr, value = geo.cast(li) geo.add("", attr, value, visual_range=[10, 100], visual_text_color="#fff", symbol_size=15, is_visualmap=True) options[year][dim] = geo._option with open("template.html", encoding='utf-8') as f: template = jinja2.Template(f.read()) html = template.render(data=json.dumps(options)) with open("city_chart.html", "w") as f: f.write(html)
通過查看base.py里的render()可以看到傳入模板的是self._option
def render(self, path="render.html"): """ 渲染數(shù)據(jù)項,生成 html 文件 :param path: 生成 html 文件保存路徑 """ from pyecharts import temple as Tp temple = Tp._temple series = self._option.get("series") for s in series: if s.get('type') == "wordCloud": temple = Tp._temple_wd break if s.get('type') == "liquidFill": temple = Tp._temple_lq break my_option = json.dumps(self._option, indent=4, ensure_ascii=False) __op = temple\ .replace("myOption", my_option)\ .replace("myWidth", str(self._width))\ .replace("myHeight", str(self._height)) try: # for Python3 with open(path, "w+", encoding="utf-8") as fout: fout.write(__op) except: # for Python2 with open(path, "w+") as fout: fout.write(__op)
template亦可仿照temple.py
... ...
感謝你能夠認真閱讀完這篇文章,希望小編分享的“使用pyecharts Geo實現(xiàn)動態(tài)數(shù)據(jù)熱力圖城市找不到怎么辦”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!