加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
example10.py 919 Bytes
一键复制 编辑 原始数据 按行查看 历史
jackfrued 提交于 2021-03-24 14:47 . 数据库阶段课堂代码
from pyecharts.charts import Bar
from pyecharts.options import TitleOpts, TextStyleOpts
from utils import create_connection
conn = create_connection(database='hrs')
try:
with conn.cursor() as cursor:
cursor.execute('select dname, total from vi_dept_emp_count')
x_data, y_data = [], []
for dname, total in cursor.fetchall():
x_data.append(dname)
y_data.append(total)
bar_chart = Bar()
title_options = TitleOpts(
title='部门人数统计',
pos_left='65',
title_textstyle_opts=TextStyleOpts(
color='blue',
font_size='32',
font_family='FZJKai-Z03S'
)
)
bar_chart.set_global_opts(title_opts=title_options)
bar_chart.add_xaxis(x_data)
bar_chart.add_yaxis('人数', y_data)
bar_chart.render()
finally:
conn.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化