📜  pivot_table 索引 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:31.281000             🧑  作者: Mango

代码示例1
table = pd.pivot_table(df, values='D', index=['A', 'B'],
...                     columns=['C'], aggfunc=np.sum, fill_value=0)
>>> table
C        large  small
A   B
bar one      4      5
    two      7      6
foo one      4      1
    two      0      6