【记录】创建DataFrame索引

发布时间:2024-12-01 18:07

利用阅读笔记记录思考,引导创作主题 #生活乐趣# #阅读乐趣# #文学创作指导#

最新推荐文章于 2022-11-06 21:18:18 发布

漫漫科研路 于 2020-09-07 19:41:32 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

【记录】创建DataFrame索引并取值

a = np.arange(1, 25).reshape(8, 3) print(a) #[[ 1 2 3] # [ 4 5 6] # [ 7 8 9] # [10 11 12] # [13 14 15] # [16 17 18] # [19 20 21] # [22 23 24]] name = 'month' name_year = 'year' month_index = [] month_index += [name + '%d' % (month + 1) for month in range(8)] print(month_index) #['month1', 'month2', 'month3', 'month4', 'month5', 'month6', 'month7', 'month8'] year_index = [] year_index += [name_year + '%d' % (year + 1) for year in range(3)] print(year_index) #['year1', 'year2', 'year3'] df = pd.DataFrame(a, index=month_index, columns=year_index) print(df) # year1 year2 year3 #month1 1 2 3 #month2 4 5 6 #month3 7 8 9 #month4 10 11 12 #month5 13 14 15 #month6 16 17 18 #month7 19 20 21 #month8 22 23 24 print(df.loc[['month1', 'month2']][['year1', 'year2']]) # year1 year2 #month1 1 2 #month2 4 5 print(df.loc[['month1', 'month2']][year_index[0:2]]) # year1 year2 #month1 1 2 #month2 4 5 print(df.loc[month_index[0:2]][year_index[0:2]]) # year1 year2 #month1 1 2 #month2 4 5 # 输出DataFrame信息至excel write = pd.ExcelWriter('D:\\数据.xlsx') df.to_excel(write) write.save()

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849

参考文章
【1】https://blog.csdn.net/houyanhua1/article/details/87874397
【2】https://blog.csdn.net/maliang_1993/article/details/50907983?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param

网址:【记录】创建DataFrame索引 https://www.yuejiaxmz.com/news/view/337119

相关内容

dataframe常用操作
(dataframe string 转 float)(object 转 float)
【实用原创】20个Python自动化脚本,解放双手、事半功倍
NumPy和Pandas总结
python数据分析
数据库 = MySQL 索引以及原理
利用Python进行数据分析——Pandas(2)
构建智能购物助手:利用LangChain和Ionic创建产品搜索API
记录世界记录生活记录你app有哪些 记录生活软件合集
MySQL索引原理及慢查询优化(转载)

随便看看