Pandas DataFrame数据库重置

时间:2018-05-10 16:37:47

标签: python pandas

我有一个数据框并在其上应用了一个数据框,但输出不是预期的。

    import pandas as pd
    import numpy as np
    raw_data = {
            'PRODUCT': ['Display', 'InStream', 'Mobile'],
            'BLAZE_TAG_NAME_DESC': ['enewsletter', 'get_the_guide', 'logo'], 
            'CLICKTHRU': [19,30,40],
            'INTERACTION':[30,40,50]}
    df_a = pd.DataFrame(raw_data, columns = ['PRODUCT', 'BLAZE_TAG_NAME_DESC', 'CLICKTHRU','INTERACTION'])

    df_b = pd.pivot_table(df_a,index="PRODUCT",columns="BLAZE_TAG_NAME_DESC",values=['CLICKTHRU','INTERACTION'],aggfunc=np.sum,fill_value = 0)

输出

enter image description here

我想输出就像

enter image description here

我尝试了技巧重置索引。但那不起作用

df.reset_index()

请帮忙。

1 个答案:

答案 0 :(得分:2)

您可以使用None

指定列名称
df_b.columns.names=[None,None]
df_b
Out[54]: 
           CLICKTHRU                    INTERACTION                   
         enewsletter get_the_guide logo enewsletter get_the_guide logo
PRODUCT                                                               
Display           19             0    0          30             0    0
InStream           0            30    0           0            40    0
Mobile             0             0   40           0             0   50