Python – Pandas Dataframe.rename()
在 Pandas 中重命名 DataFrame 列名称非常简单。你需要做的就是使用 rename() 方法,并传入要更改的列名称和新列名称。让我们举个例子,看看它是如何做到的。
步骤
- 创建一个二维、大小可变和潜在异构表格数据 df。
- 打印输入的 DataFrame,df。
- 使用 rename() 方法重命名列名称。在这里,我们将重命名名为 “x” 的列并将其新名称为 “new_x”。
- 打印已重命名列的 DataFrame。
示例
import pandas as pd df = pd.DataFrame( { "x": [5, 2, 7, 0], "y": [4, 7, 5, 1], "z": [9, 3, 5, 1] } ) print "Input DataFrame is:\n", df df = df.rename(columns={"x": "new_x"}) print "After renaming, the DataFrame is:\n", df
输出
Input DataFrame is: x y z 0 5 4 9 1 2 7 3 2 7 5 5 3 0 1 1 After renaming, the DataFrame is: new_x y z 0 5 4 9 1 2 7 3 2 7 5 5 3 0 1 1
广告