gpt4 book ai didi

python - Pandas 使用列表向列添加二级索引

转载 作者:行者123 更新时间:2023-12-04 14:52:55 26 4
gpt4 key购买 nike

我有一个带有列标题的数据框(以及我的真实数据多级行索引)。我想根据我的列表向列添加二级索引。

import pandas as pd

data = {"apple": [7,5,6,4,7,5,8,6],
"strawberry": [3,5,2,1,3,0,4,2],
"banana": [1,2,1,2,2,2,1,3],
"chocolate" : [5,8,4,2,1,6,4,5],
"cake":[4,4,5,1,3,0,0,3]
}

df = pd.DataFrame(data)
food_cat = ["fv","fv","fv","j","j"]

我想要这样的东西:

example desired output

我尝试使用 How to add a second level column header/index to dataframe by matching to dictionary values? - 但是无法让它工作(而且不理想,因为我需要弄清楚如何使字典自动化,而我没有)。

我还尝试将列表添加为数据框中的一行并将该行转换为二级索引,如 this answer使用

df.loc[len(df)] = food_cat
df = pd.MultiIndex.from_arrays(df.columns, df.iloc[len(df)-1])

但出现错误检查所有数组的长度是否相等,类型错误:输入必须是类似数组的列表/序列。

我也尝试使用 df = pd.MultiIndex.from_arrays(df.columns, np.array(food_cat))import numpy as np 但得到了同样的错误.

我觉得这应该是一项简单的任务(针对行),并且提出了很多问题,但我一直在努力寻找可以复制以适应我的数据的内容。

最佳答案

Pandas 多索引创建需要一个列表(或类似列表)作为参数传递:

df.columns = pd.MultiIndex.from_arrays([food_cat, df.columns])

df

fv j
apple strawberry banana chocolate cake
0 7 3 1 5 4
1 5 5 2 8 4
2 6 2 1 4 5
3 4 1 2 2 1
4 7 3 2 1 3
5 5 0 2 6 0
6 8 4 1 4 0
7 6 2 3 5 3

关于python - Pandas 使用列表向列添加二级索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68750150/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com