Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change a specific row label in a Pandas dataframe?

I have a dataframe such as:

      0     1    2    3    4    5
0  41.0  22.0  9.0  4.0  2.0  1.0
1   6.0   1.0  2.0  1.0  1.0  1.0
2   4.0   2.0  4.0  1.0  0.0  1.0
3   1.0   2.0  1.0  1.0  1.0  1.0
4   5.0   1.0  0.0  1.0  0.0  1.0
5  11.4   5.6  3.2  1.6  0.8  1.0

Where the final row contains averages. I would like to rename the final row label to "A" so that the dataframe will look like this:

      0     1    2    3    4    5
0  41.0  22.0  9.0  4.0  2.0  1.0
1   6.0   1.0  2.0  1.0  1.0  1.0
2   4.0   2.0  4.0  1.0  0.0  1.0
3   1.0   2.0  1.0  1.0  1.0  1.0
4   5.0   1.0  0.0  1.0  0.0  1.0
A  11.4   5.6  3.2  1.6  0.8  1.0

I understand columns can be done with df.columns = . . .. But how can I do this with a specific row label?

like image 292
August Williams Avatar asked Feb 09 '17 17:02

August Williams


People also ask

How do I rename a row in a column in pandas?

Pandas rename() method is used to rename any index, column or row. Renaming of column can also be done by dataframe. columns = [#list] .

How do I rename a row in a DataFrame?

To rename index values of pandas DataFrame use rename() method or index attribute.


2 Answers

You can get the last index using negative indexing similar to that in Python

last = df.index[-1]

Then

df = df.rename(index={last: 'a'})

Edit: If you are looking for a one-liner,

df.index = df.index[:-1].tolist() + ['a']
like image 121
Vaishali Avatar answered Sep 21 '22 15:09

Vaishali


use index attribute:

 df.index = df.index[:-1].append(pd.Index(['A']))
like image 36
Zeugma Avatar answered Sep 19 '22 15:09

Zeugma