试图更改Pandas系列的索引列?

时间:2017-04-25 19:56:31

标签: python pandas series

我有一个Pandas系列,当我将它输出到CSV时看起来像这样 -

a_x,8
b_x,14
c_x,18
d_x,26
e_x,32

这是我想要实现的结果 -

a_bar,8
b_bar,14
c_bar,18
d_bar,26
e_bar,32

看起来像一个简单的操作,但还不能得到结果。 谢谢。

1 个答案:

答案 0 :(得分:3)

溶液=

df.index = df.index.str.replace('x', 'bar')

由米奇解决,谢谢