将pandas数据框的第一列设置为标题

时间:2019-03-21 00:38:03

标签: python pandas

This is my output DataFrame from reading an excel file.

我希望第一列为索引/标题

 one               Entity

0两个v1

1个三个产品

2四2015-05-27 00:00:00

3五2018-04-27 00:00:00

4个6个都

5个七个ID

6八打招呼

2 个答案:

答案 0 :(得分:0)

一种方法是两次使用T

df=df.T.set_index(0).T

答案 1 :(得分:0)

将熊猫数据框的第一列设置为标题

  

在读取文件时设置“ header = 1”

例如:df = pd.read_csv(inputfilePath, header=1)

  在读取文件时

设置 skiprows = 1

例如:df = df.read_csv(inputfilepath, skiprows=1)

  

在数据框中设置 iloc [0]

例如:df.columns = df.iloc[0]

我希望这会有所帮助。