如何在 pandas 中将第一行设置为标题
您可以使用以下基本语法将 pandas DataFrame 的第一行设置为标题:
df. columns = df. iloc [0] df = df[1:]
以下示例展示了如何在实践中使用此语法。
示例:将第一行设置为 Pandas 中的标题
假设我们有以下 pandas DataFrame,其中包含有关各种篮球运动员的信息:
import pandas as pd #createDataFrame df = pd. DataFrame ({' Bad Name 1 ': ['team', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'], ' Bad Name 2 ': ['points', 18, 22, 19, 14, 14, 11, 20, 28], ' Bad Name 3 ': ['assists', 5, 7, 7, 9, 12, 9, 9, 4], ' Bad Name 4 ': ['rebounds', 11, 8, 10, 6, 6, 5, 9, 12]}) #view DataFrame print (df) Bad Name 1 Bad Name 2 Bad Name 3 Bad Name 4 0 team points assists rebounds 1 A 18 5 11 2 B 22 7 8 3 C 19 7 10 4 D 14 9 6 5 E 14 12 6 6 F 11 9 5 7 G 20 9 9 8:28 a.m. 4:12
假设第一行包含我们实际想要在标题中使用的值。
要将第一行设置为标题,我们可以使用以下语法:
#set column names equal to values in row index position 0
df. columns = df. iloc [0]
#remove first row from DataFrame
df = df[1:]
#view updated DataFrame
print (df)
0 team points assists rebounds
1 A 18 5 11
2 B 22 7 8
3 C 19 7 10
4 D 14 9 6
5 E 14 12 6
6 F 11 9 5
7 G 20 9 9
8:28 a.m. 4:12
请注意,第一行中的值现在用作标题。
如果要重置DataFrame索引,请使用以下代码:
#reset index values
df. reset_index (drop= True , place= True )
#view updated DataFrame
print (df)
0 team points assists rebounds
0 A 18 5 11
1 B 22 7 8
2 C 19 7 10
3 D 14 9 6
4 E 14 12 6
5 F 11 9 5
6 G 20 9 9
7:28 4 12
现在重置索引,以便第一行的索引值为0 。
其他资源
以下教程解释了如何在 pandas 中执行其他常见任务: