pandas pivot table重命名列

时间:2017-02-07 20:09:41

标签: python pandas pivot pivot-table data-mining

如何在pandas pivot操作后重命名多个级别的列?

以下是一些生成测试数据的代码:

import pandas as pd
df = pd.DataFrame({
    'c0': ['A','A','B','C'],
    'c01': ['A','A1','B','C'],
    'c02': ['b','b','d','c'],
    'v1': [1, 3,4,5],
    'v2': [1, 3,4,5]})

print(df)

给出一个测试数据框:

   c0 c01 c02  v1  v2
0  A   A   b   1   1
1  A  A1   b   3   3
2  B   B   d   4   4
3  C   C   c   5   5

应用数据透视

df2 = pd.pivot_table(df, index=["c0"], columns=["c01","c02"], values=["v1","v2"])
df2 = df2.reset_index()

给出

output1

如何通过加入级别重命名列? 格式 <c01 value>_<c02 value>_<v1>

例如第一列应该是这样的 "A_b_v1"

加入关卡的顺序对我来说并不重要。

1 个答案:

答案 0 :(得分:10)

如果要将多索引合并为单个字符串索引而不关心索引级别顺序,则可以简单地map join对列进行df2.columns = list(map("_".join, df2.columns)) 函数,并将结果列表分配回来:

df2 = pd.pivot_table(df, index=["c0"], columns=["c01","c02"], values=["v1","v2"])

# Use the list comprehension to make a list of new column names and assign it back
# to the DataFrame columns attribute.
df2.columns = ["_".join((j,k,i)) for i,j,k in df2.columns]
df2.reset_index()

对于你的问题,你可以循环遍历每个元素都是元组的列,解压缩元组并按照你想要的顺序将它们连接起来:

scanf

enter image description here