本文實(shí)例為大家分享了python處理excel繪制雷達(dá)圖的具體代碼,供大家參考,具體內(nèi)容如下
站在用戶的角度思考問(wèn)題,與客戶深入溝通,找到杏花嶺網(wǎng)站設(shè)計(jì)與杏花嶺網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、國(guó)際域名空間、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋杏花嶺地區(qū)。python處理excel制成雷達(dá)圖,利用工具plotly在線生成,事先要安裝好xlrd組件
代碼:
import xlrd //事先要下載好xlrd組件 import plotly.plotly as py import plotly.graph_objs as go from plotly import tools from plotly.graph_objs import * tools.set_credentials_file(username=' ', api_key=' ') fname="**********.xlsx" df=xlrd.open_workbook(fname) sh=df.sheet_by_name("Sheet1") nrows=sh.nrows ncols=sh.ncols row_list=[] for i in range(0,nrows): row_data=sh.row_values(i) row_list.append(row_data) col_list=[] for i in range(0,ncols): col_data=sh.col_values(i) col_list.append(col_data) data = [ //數(shù)據(jù)根據(jù)自己的實(shí)際情況來(lái) go.Scatterpolar( r = [col_list[1][2],col_list[1][3], col_list[1][4], col_list[1][5], col_list[1][6], col_list[1][7], col_list[1][8], col_list[1][9], col_list[1][10], col_list[1][11], col_list[1][12], col_list[1][13], col_list[1][14], col_list[1][15], col_list[1][16], col_list[1][17], col_list[1][18], col_list[1][19], col_list[1][20], col_list[1][21], col_list[1][22], col_list[1][23], col_list[1][24], col_list[1][25], col_list[1][26], col_list[1][27], col_list[1][28], col_list[1][29], col_list[1][30], col_list[1][31], col_list[1][32], col_list[1][33], col_list[1][34], col_list[1][35], col_list[1][36], col_list[1][37],col_list[1][38]], theta = [0,10,20, 30, 40, 50,60,70,80,90,100,110,120,130,140,150,160,170,180,190,200,210,220,230,240,250,260,270,280,290,300,310,320,330,340,350,0], fill = 'toself', name = 'TX' ), go.Scatterpolar( r = [col_list[4][2],col_list[4][3], col_list[4][4], col_list[4][5], col_list[4][6], col_list[4][7], col_list[4][8], col_list[4][9], col_list[4][10], col_list[4][11], col_list[4][12], col_list[4][13], col_list[4][14], col_list[4][15], col_list[4][16], col_list[4][17], col_list[4][18], col_list[4][19], col_list[4][20], col_list[4][21], col_list[4][22], col_list[4][23], col_list[4][24], col_list[4][25], col_list[4][26], col_list[4][27], col_list[4][28], col_list[4][29], col_list[4][30], col_list[4][31], col_list[4][32], col_list[4][33], col_list[4][34], col_list[4][35], col_list[4][36], col_list[4][37],col_list[4][38]], theta = ['0',10,20, 30, 40, 50,60,70,80,90,100,110,120,130,140,150,160,170,180,190,200,210,220,230,240,250,260,270,280,290,300,310,320,330,340,350,0], fill = 'toself', name = 'RX' ) ] layout = go.Layout( polar = dict( radialaxis = dict( visible = True, range = [0, 110] ) ), showlegend = False ) fig = go.Figure(data=data, layout=layout) py.plot(fig, filename = "radar")
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
本文標(biāo)題:python處理excel繪制雷達(dá)圖-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)網(wǎng)址:http://jinyejixie.com/article28/ghdcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、小程序開(kāi)發(fā)、網(wǎng)站改版、動(dòng)態(tài)網(wǎng)站、域名注冊(cè)、定制開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容