pivot_table

こつこつPython

【毎日Python】Pythonでデータフレームからピボットテーブルを作成する方法|DataFrame.pivot_table

import pandas as pd df=pd.DataFrame({'col01': , 'col02': , 'col03': }) df df.pivot_table(index='col01',columns='col02',v...