Pandas DataFrame の列ラベルを変更するには、いくつかの方法が利用可能です。
df.rename() 関数を使用して、変更する列を指定します。 renamed:
df = df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}) # Or rename the existing DataFrame df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}, inplace=True)
axis=1 で df.set_axis() を使用して列ヘッダーを再割り当てします:
df2 = df.set_axis(['V', 'W', 'X', 'Y', 'Z'], axis=1)
ヘッダーも割り当てることができます直接:
df.columns = ['V', 'W', 'X', 'Y', 'Z']
最小限のコード例
DataFrame の列の名前を ['a', '$b', '$c', '$d', '$e'] から ['a', ' に変更するにはb'、'c'、'd'、'e']:
import pandas as pd df = pd.DataFrame('x', index=range(3), columns=list('abcde')) df2 = df.rename(columns={'$b': 'b', '$c': 'c', '$d': 'd', '$e': 'e'}) print(df2)
出力:
a b c d e 0 x x x x x 1 x x x x x 2 x x x x x
以上がPandas DataFrame の列の名前を変更するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。