Renaming columns in pandas

前端 未结 27 2549
野性不改
野性不改 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:22

    The rename method can take a function, for example:

    In [11]: df.columns
    Out[11]: Index([u'$a', u'$b', u'$c', u'$d', u'$e'], dtype=object)
    
    In [12]: df.rename(columns=lambda x: x[1:], inplace=True)
    
    In [13]: df.columns
    Out[13]: Index([u'a', u'b', u'c', u'd', u'e'], dtype=object)
    

提交回复
热议问题