标签:import nbsp name .com data span 有一个 das pandas
转自:https://www.cnblogs.com/hhh5460/p/5816774.html
问题:
有一个DataFrame,列名为:[‘$a‘, ‘$b‘, ‘$c‘, ‘$d‘, ‘$e‘]
现需要改为:[‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘]
有何办法?
import pandas as pd df = pd.DataFrame({‘$a‘: [1], ‘$b‘: [1], ‘$c‘: [1], ‘$d‘: [1], ‘$e‘: [1]})
解决:
# ①暴力 df.columns = [‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘] # ②修改 df.columns = df.columns.str.strip(‘$‘) # ③修改 df.columns = df.columns.map(lambda x:x[1:])
# ④暴力(好处:也可只修改特定的列) df.rename(columns=(‘$a‘: ‘a‘, ‘$b‘: ‘b‘, ‘$c‘: ‘c‘, ‘$d‘: ‘d‘, ‘$e‘: ‘e‘}, inplace=True) # ⑤修改 df.rename(columns=lambda x:x.replace(‘$‘,‘‘), inplace=True)
标签:import nbsp name .com data span 有一个 das pandas
原文地址:http://www.cnblogs.com/shiyingzhi/p/7898855.html