grp2=df.groupby(['Time period','ID']).sum().round(0) Pivot=grp2.pivot_table(index='Campaign ID',columns='Time period', values=['Spend'],aggfunc='sum').round().fillna(0) print('キャンペーン単位CPIとSpend') Pivot.iloc[:, -7:]
【したいこと】
一番右の日付を基準に昇順にしたい。
【試したこと】
Today=2020-04-05
Pivot.iloc[:, -7:].sort_values(Today,ascending=True).round()
エラーメッセージ 4/5になってしまいます。
あなたの回答
tips
プレビュー