我得到了这个数据透视表结果
我的pivot table代码看起来像这样:
result = pd.pivot_table(excel, values=["Percent"], columns='Date', index='items', aggfunc={"Percent":np.mean})
但我需要看起来像这样:
有谁知道我怎么才能得到它?我试着:
result.reset_index(level=0, drop=True)
但却落错了列
ctzwtxfj1#
你不需要用dict指定aggfunc,因为你只有一列值:
aggfunc
result = excel.pivot_table(index='items', columns='Date', values='Percent', aggfunc='mean')
1条答案
按热度按时间ctzwtxfj1#
你不需要用dict指定
aggfunc
,因为你只有一列值: