1 Star 0 Fork 0

cuidenghao/数据可视化

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
7.1折现图 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
cuidenghao 提交于 2024-11-01 07:16 . add 7.1折现图.
import pandas as pd
from pyecharts import options as opts
from pyecharts.charts import Line
from pyecharts.globals import ThemeType
df = pd.read_excel('全国人口年度数据.xlsx',index_col=0)
df = df.sort_index(axis='columns')
line = Line(init_opts=opts.InitOpts(
width='1200px', height='600px',
theme=ThemeType.SHINE,page_title='折线图'))
line.add_xaxis(xaxis_data=df.columns.tolist())
line.add_yaxis(series_name='年末总人口', y_axis=df.loc['年末总人口(万人)'])
line.add_yaxis(series_name='城镇人口', y_axis=df.loc['城镇人口(万人)'])
line.add_yaxis(series_name='乡村人口', y_axis=df.loc['乡村人口(万人)'])
line.set_global_opts(
title_opts=opts.TitleOpts(
title='2003-2022年全国年末总人口,城镇人口和乡村人口折线图',
pos_left='center'),
yaxis_opts=opts.AxisOpts(name='人口(万人)',
name_location='center',name_gap=55, min_=45000),
legend_opts=opts.LegendOpts(pos_right='10%', pos_top='5%')
)
line.render('例7-1.html')
Loading...
马建仓 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