1 Star 0 Fork 0

cuidenghao/数据可视化

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
日历图 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
cuidenghao 提交于 2024-11-01 07:26 . update 日历图.
import pandas as pd
from pyecharts import options as opts
from pyecharts.charts import Calendar
from pyecharts.globals import ThemeType
df=pd.read_excel('某地区2023年上半年空气质量指数.xlsx')
data=df[['日期','空气质量指数(AQI)']].values.tolist()
calendar=Calendar(init_opts=opts.InitOpts(theme=ThemeType.ESSOS,page_title='日历图'))
calendar.add(series_name='',yaxis_data=data,calendar_opts=opts.CalendarOpts(range_=['2023-01-01','2023-06-30']))
calendar.set_global_opts(
title_opts=opts.TitleOpts(
title='某地区2023年上半年空气质量指数日历图',
pos_left='center'),
legend_opts=opts.LegendOpts(is_show=False),
visualmap_opts=opts.VisualMapOpts(
orient='horizontal',
is_piecewise=True,
pos_top='45%',
pos_left='center',
pieces=[
{'min': 0, 'max': 50, 'label': '优', 'color': 'green'},
{'min': 51, 'max': 100, 'label': '良', 'color': 'yellow'},
{'min': 101, 'max': 150, 'label': '轻度污染', 'color': 'orange'},
{'min': 151, 'max': 200, 'label': '中度污染', 'color': 'red'},
{'min': 201, 'max': 300, 'label': '重度污染', 'color': 'purple'},
{'min': 301, 'label': '严重污染', 'color': 'brown'},
]
)
)
calendar.render('例7-3.html')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhgnwkdaw/number-of-data-visualizations.git
git@gitee.com:zhgnwkdaw/number-of-data-visualizations.git
zhgnwkdaw
number-of-data-visualizations
数据可视化
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385