时间:2021-05-22
本文实例为大家分享了python处理excel绘制雷达图的具体代码,供大家参考,具体内容如下
python处理excel制成雷达图,利用工具plotly在线生成,事先要安装好xlrd组件
代码:
import xlrd //事先要下载好xlrd组件import plotly.plotly as pyimport plotly.graph_objs as gofrom plotly import toolsfrom 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.nrowsncols=sh.ncolsrow_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 = [ //数据根据自己的实际情况来 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")以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
还在为Excel雷达图怎么制作而苦恼吗,下面教你Excel雷达图怎么制作,让你告别Excel雷达图怎么制作的烦恼。 一、雷达图的制作 1、选中数据区
本文实例为大家分享了python绘制温度变化雷达图的具体代码,供大家参考,具体内容如下假设某天某地每三个小时取样的气温为针对温度变化趋势绘制雷达图:代码如下:i
你还在为Excel雷达图怎么制作而苦恼吗,今天小编教你Excel雷达图怎么制作,让你告别Excel雷达图怎么制作的烦恼。一、雷达图的制作1、选中数据区域&mda
excel常用于制图,提供多种图形,如折现图、饼状图、雷达图等等,下面小编就为大家分享在excel表格中绘制柱状图方法,不会的朋友可以参考本文,希望这篇文章能对
这篇文章主要介绍了PYTHON绘制雷达图代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下1、雷达图im