我正在尝试在数据透视表中添加小计行(使用pandas pd.pivot_table)。这是代码table = pd.pivot_table(df, values= ['Quantity', 'Money', 'Cost'], index=['house','date', 'currency', 'family name'], columns=[], fill_value=0, aggfunc=np.sum)
。这是相应的输出(导出到excel):
然后,我尝试使用house
作为参考来获取小计行。我按照此链接Pivot table subtotals in Pandas中所述的步骤操作,因此我使用tablesum = table.groupby(level='house').sum()
创建了一个组。在我尝试连接table
和tablesum
数据帧之前,一切似乎都没问题。这就是我得到的(对于A家庭):
基本上,我只在一列(以逗号分隔)中获得了表索引(房屋,日期,货币,姓氏)中所述的四个类别。所以,即使我按房子得到小计,我也失去了pivot_table分离。所以,我的问题是:我怎样才能保留它(将pivot_table的索引保存在不同的列中)?
任何帮助都会非常感激。
问候,
pd:我还检查了这个链接Sub Total in pandas pivot Table,但这给了我另一种与字符串和数字相关的错误。
答案 0 :(得分:2)
您可以创建MultiIndex
级别的自定义4
,然后分配。
注意:第二级date
必须转换为字符串,因为连字符也是字符串,否则得到:
TypeError:无法比较类型'时间戳'使用类型' str'
df = pd.DataFrame({'house':list('aaaaabbbbb'),
'date':['2015-01-01'] * 3 + ['2015-01-02'] * 2 +
['2015-01-01'] * 3 +['2015-01-02'] * 2,
'currency':['USD'] * 3 + ['NK'] * 2 + ['USD'] * 3 +['NK'] * 2,
'Quantity':[1,3,5,7,1,0,7,2,3,9],
'Money':[5,3,6,9,2,4,7,2,3,9],
'Cost':[5,3,6,9,2,4,7,2,3,9],
'family name':list('aabbccaabb')})
print (df)
Cost Money Quantity currency date family name house
0 5 5 1 USD 2015-01-01 a a
1 3 3 3 USD 2015-01-01 a a
2 6 6 5 USD 2015-01-01 b a
3 9 9 7 NK 2015-01-02 b a
4 2 2 1 NK 2015-01-02 c a
5 4 4 0 USD 2015-01-01 c b
6 7 7 7 USD 2015-01-01 a b
7 2 2 2 USD 2015-01-01 a b
8 3 3 3 NK 2015-01-02 b b
9 9 9 9 NK 2015-01-02 b b
#convert only for subtotal - join with empty strings
df['date'] = df['date'].astype(str)
table = pd.pivot_table(df, values= ['Quantity', 'Money', 'Cost'],
index=['house','date', 'currency', 'family name'],
fill_value=0,
aggfunc=np.sum)
print (table)
Cost Money Quantity
house date currency family name
a 2015-01-01 USD a 8 8 4
b 6 6 5
2015-01-02 NK b 9 9 7
c 2 2 1
b 2015-01-01 USD a 9 9 9
c 4 4 0
2015-01-02 NK b 12 12 12
tablesum = table.groupby(level='house').sum()
tablesum.index = pd.MultiIndex.from_arrays([tablesum.index.get_level_values(0)+ '_sum',
len(tablesum.index) * [''],
len(tablesum.index) * [''],
len(tablesum.index) * ['']])
print (tablesum)
Cost Money Quantity
a_sum 25 25 17
b_sum 25 25 21
print (tablesum.index)
MultiIndex(levels=[['a_sum', 'b_sum'], [''], [''], ['']],
labels=[[0, 1], [0, 0], [0, 0], [0, 0]])
df = pd.concat([table, tablesum]).sort_index(level=0)
print (df)
Cost Money Quantity
house date currency family name
a 2015-01-01 USD a 8 8 4
b 6 6 5
2015-01-02 NK b 9 9 7
c 2 2 1
a_sum 25 25 17
b 2015-01-01 USD a 9 9 9
c 4 4 0
2015-01-02 NK b 12 12 12
b_sum 25 25 21
答案 1 :(得分:0)
您可以使用transform在goupby之后保留原始表格布局。因此,以下内容可能会为您提供所需的结果。
table.groupby(level='house').transform("sum")
如果这不是您想要的,请澄清。
https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.transform.html