python處理excel繪制雷達(dá)圖
本文實(shí)例為大家分享了python處理excel繪制雷達(dá)圖的具體代碼,供大家參考,具體內(nèi)容如下
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")
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python內(nèi)置數(shù)據(jù)結(jié)構(gòu)與操作符的練習(xí)題集錦
Python的一些算法題目經(jīng)常能夠幫助我們鞏固對(duì)一些常用方法的記憶,這里我們整理了一份Python內(nèi)置數(shù)據(jù)結(jié)構(gòu)與操作符的練習(xí)題集錦,需要的朋友可以參考下2016-07-07
Django 對(duì)IP訪問(wèn)頻率進(jìn)行限制的例子
今天小編就為大家分享一篇Django 對(duì)IP訪問(wèn)頻率進(jìn)行限制的例子,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-08-08
用python給csv里的數(shù)據(jù)排序的具體代碼
在本文里小編給大家分享的是關(guān)于用python給csv里的數(shù)據(jù)排序的具體代碼內(nèi)容,需要的朋友們可以學(xué)習(xí)下。2020-07-07
爬蟲(chóng)使用IP來(lái)隱藏真實(shí)地址的過(guò)程(python示例)
這篇文章主要為大家介紹了爬蟲(chóng)使用IP來(lái)隱藏真實(shí)地址的過(guò)程(python示例)詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-12-12
python中opencv K均值聚類的實(shí)現(xiàn)示例
本文主要介紹了python中opencv K均值聚類的實(shí)現(xiàn)示例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2022-06-06
pytorch模型轉(zhuǎn)換為onnx可視化(使用netron)
netron 是一個(gè)非常好用的網(wǎng)絡(luò)結(jié)構(gòu)可視化工具,但是netron對(duì)pytorch模型的支持還不成熟,這篇文章主要介紹了pytorch模型轉(zhuǎn)換為onnx,并使用netron可視化,需要的朋友可以參考下2023-05-05
Python Selenium 之關(guān)閉窗口close與quit的方法
今天小編就為大家分享一篇Python Selenium 之關(guān)閉窗口close與quit的方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-02-02
Pandas之排序函數(shù)sort_values()的實(shí)現(xiàn)
這篇文章主要介紹了Pandas之排序函數(shù)sort_values()的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-07-07

