Pandasで特定の行をカラム名にしたいとき 2022年11月2日 / 1 min read pandas , python はじめに Pandasで特定の行をカラム名にする方法です。 方法 # 1行目をヘッダーにしたいとき df.columns = list(df.iloc[0])