Pandas中的数据帧索引转换

Data frame index transformation in Pandas(Pandas中的数据帧索引转换)
本文介绍了Pandas中的数据帧索引转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想转换以下数据框:

 ID 1234
     type   band    category
  0    A      B       C

收件人:

ID     type   band   category
1234     A      B      C

其中ID是索引列

推荐答案

尝试

df.stack(0).reset_index().drop('level_0', axis=1)

输出:

     ID Type band category
0  1234    A    B        C

这篇关于Pandas中的数据帧索引转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)
cannot use geometry manager pack inside . which already has slaves managed by grid(无法在内部使用几何管理器包。它已经拥有由网格管理的从属对象)
Is there any way to quot;extractquot; the dtype conversion functionality from pandas read_csv?(有没有办法从 pandas Read_CSV中提取数据类型转换功能?)
Highlighting rows based on a condition(根据条件突出显示行)