1 Star 0 Fork 0

cuidenghao/11

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.py 785 Bytes
一键复制 编辑 原始数据 按行查看 历史
cuidenghao 提交于 2024-09-11 09:14 . 1
from pyecharts import options as opts
from pyecharts.charts import Line
from pyecharts.globals import ThemeType
import pandas as pd
df = pd.read_excel('2022年某店铺3个分店销售额.xlsx')
x = df['月份'].tolist()
y = df['第三分店']
line = Line(init_opts=opts.InitOpts(
width='800px',height='400px',
theme=ThemeType.VINTAGE,page_title='折线图'))
line.add_xaxis(xaxis_data=x)
line.add_yaxis(series_name='第三分店',y_axis=y)
line.set_global_opts(
title_opts=opts.TitleOpts(
title='2022年某店铺第三分店销售额折线图',
pos_left='center'),
yaxis_opts=opts.AxisOpts(name='月份',
name_location='center',name_gap=35),
legend_opts=opts.LegendOpts(pos_right='10%',pos_top='8%')
)
line.render('line.html')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhgnwkdaw/111.git
git@gitee.com:zhgnwkdaw/111.git
zhgnwkdaw
111
11
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385