pyecharts画柱状图
程序员文章站
2022-03-11 21:13:43
画柱状图1.设置图片大小、标题、图例2.视觉映射配置项3.设置标签(图的标签和x轴的标签)from pyecharts.charts import Barfrom pyecharts.globals import ThemeTypebar = Bar(init_opts=opts.InitOpts(width='800px',height='400px')) #设置图片大小bar.add_xaxis(driverCols) #x轴bar.add_yaxis("单位:1/10000...
画柱状图
1.设置图片大小、标题、图例
2.视觉映射配置项
3.设置标签(图的标签和x轴的标签)
from pyecharts.charts import Bar
from pyecharts.globals import ThemeType
bar = Bar(init_opts=opts.InitOpts(width='800px',height='400px')) #设置图片大小
bar.add_xaxis(driverCols) #x轴
bar.add_yaxis("单位:1/10000",drierRate, category_gap='60%') #y轴 #category_gap柱间距离
bar.set_global_opts(legend_opts=opts.LegendOpts(pos_left='left',pos_top=25), #全局配置项 #图例
visualmap_opts=opts.VisualMapOpts(is_show=True,type_='color',min_=0,max_=10,pos_left='right'), #视觉映射配置项
title_opts=opts.TitleOpts(title='驾驶员表缺失值率'), #标题
xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(font_size=15,rotate=15))) #x轴上标签设置
bar.set_series_opts(label_opts=opts.LabelOpts(is_show=True,color='black',font_size=13)) #系列配置项 #标签设置
bar.render_notebook()
本文地址:https://blog.csdn.net/da_xiaobaicai/article/details/109624815
上一篇: CentOS 6.5系统中安装配置MySQL数据库
下一篇: 排序算法集合