Python-重命名pandas列
我有一个使用pandas和列标签的DataFrame
,我需要对其进行编辑以替换原始列标签。
我想A
在原始列名称为的DataFrame
中更改列名称:
['$a', '$b', '$c', '$d', '$e']
至
['a', 'b', 'c', 'd', 'e'].
我已经将编辑后的列名存储在列表中,但是我不知道如何替换列名。
回答:
只需将其分配给.columns
属性:
>>> df = pd.DataFrame({'$a':[1,2], '$b': [10,20]})>>> df.columns = ['a', 'b']
>>> df
a b
0 1 10
1 2 20
以上是 Python-重命名pandas列 的全部内容, 来源链接: utcz.com/qa/433723.html