gpt4 book ai didi

python - 带有 stub 列表的 Pandas Wide_to_long

转载 作者:行者123 更新时间:2023-12-02 09:37:00 24 4
gpt4 key购买 nike

我目前有以下数据框:

        1_1       1_2       1_3       1_4       1_5       2_1  ...       9_5      10_1      10_2      10_3      10_4      10_5

0 0.049400 0.063812 0.097736 -0.077222 0.112779 -0.201620 ... 0.138246 0.015369 -0.083559 -0.186949 0.158505 -0.046787
1 -0.169837 0.093606 0.043157 0.095289 -0.078525 -0.026500 ... -0.054344 0.008955 0.045036 0.198438 0.197416 -0.057831
2 -0.192915 0.001477 0.077699 …

我想获得这样的东西:

cat     u       i       mouse       

0 1 1 0.049400
1 1 1 -0.169837
2 1 1 -0.192915
0 1 2 0.063812
1 1 2 0.093606
2 1 2 0.001477

本质上,这些行代表cat列的值,下划线之前的数字代表u列,之后的数字代表i列。最后,鼠标列是前面因素的组合值。

但是,该解决方案应该适用于这种格式的任何数据。

到目前为止,考虑到我可以访问 u 列表(在本例中为 1,2,3,4,5,6,7,8,9,10)和 i (1,2, 3,4,5),但该解决方案也应该适用于不同的列表和不同的行数。

u_seq_stub = [u + '_' for u in u_seq] 
df = pd.wide_to_long(df, u_seq_stub, i='u', j='i').reset_index().rename(columns={'_':'u'})

但这不起作用,并抛出“KeyError:“[Index(['userid'], dtype='object')] 都不在 [columns] 中””...我也咨询过this这似乎与我想要的没有什么不同,但一定有什么我误解的地方。

我提前感谢任何帮助。

最佳答案

MultiIndex 的所有列使用 split,然后按 DataFrame.unstack reshape 形状,将新列名称的级别更改为 DataFrame.rename_axis最后将其转换为列 Series.reset_index :

df.columns = df.columns.str.split('_', expand=True)
df = df.unstack().rename_axis(('u','i','cat')).reset_index(name='mouse')
print (df.head(10))
u i cat mouse
0 1 1 0 0.049400
1 1 1 1 -0.169837
2 1 1 2 -0.192915
3 1 2 0 0.063812
4 1 2 1 0.093606
5 1 2 2 0.001477
6 1 3 0 0.097736
7 1 3 1 0.043157
8 1 3 2 0.077699
9 1 4 0 -0.077222

您的解决方案应首先使用 wide_to_long 中的参数 sep 进行更改,然后通过 DataFrame.stack 再次 reshape 进行一些数据清理:

u_seq_stub = ['1','2',...,'9','10']
#alternative
#u_seq_stub = [str(x) for x in range(1,11)]


df = (pd.wide_to_long(df.reset_index(),
u_seq_stub,
i='index',
j='i',
sep='_')
.stack()
.reset_index(name='mouse')
.rename(columns={'index':'cat', 'level_2':'u'})
.astype({'i':int, 'u':int})
.sort_values(['u','i','cat'])
)
print (df.head(10))
cat i u mouse
0 0 1 1 0.049400
12 1 1 1 -0.169837
24 2 1 1 -0.192915
3 0 2 1 0.063812
15 1 2 1 0.093606
25 2 2 1 0.001477
5 0 3 1 0.097736
17 1 3 1 0.043157
26 2 3 1 0.077699
7 0 4 1 -0.077222

关于python - 带有 stub 列表的 Pandas Wide_to_long,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59107475/

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