Renaming columns in pandas

前端 未结 27 2524
野性不改
野性不改 2020-11-21 07:05

I have a DataFrame using pandas and column labels that I need to edit to replace the original column labels.

I\'d like to change the column names in a DataFrame

27条回答
  •  隐瞒了意图╮
    2020-11-21 07:28

    Just assign it to the .columns attribute:

    >>> df = pd.DataFrame({'$a':[1,2], '$b': [10,20]})
    >>> df.columns = ['a', 'b']
    >>> df
       a   b
    0  1  10
    1  2  20
    

提交回复
热议问题