使用pandas重命名数据框列中的元素

时间:2013-08-31 13:26:49

标签: python pandas dataframe rename

使用pandas:

df = pd.DataFrame({'n':['d','a','b','c','c','a','d','b'], 'v':[1,2,1,2,2,1,1,1]})

如何重命名df.n中的元素,以便a更改为xb更改为yc更改为{ {1}}和wd,导致:

z

1 个答案:

答案 0 :(得分:19)

您可以将替换值字典传递给系列replace方法:

In [11]: df['n'].replace({'a': 'x', 'b': 'y', 'c': 'w', 'd': 'z'})
Out[11]: 
0    z
1    x
2    y
3    w
4    w
5    x
6    z
7    y
Name: n, dtype: object

In [12]: df['n'] = df['n'].replace({'a': 'x', 'b': 'y', 'c': 'w', 'd': 'z'})