PythonのPandasで、カラム名を入れ替えたいときがあります。
一括で変更するなら、df.columnsでリストを当てる方法が簡単です。
カラム名を一括変更・入替
番号 | 氏名 | 年齢 |
---|---|---|
1 | 佐藤 | 45 |
2 | 鈴木 | 51 |
3 | 高橋 | 24 |
/*カラム名を変更*/
df.columns = ['no', 'name', 'age']
no | name | age |
---|---|---|
1 | 佐藤 | 45 |
2 | 鈴木 | 51 |
3 | 高橋 | 24 |
Python, Pandas|行を削除df.drop(n), 列を削除df.drop(df.columns[n], axis=1)