gpt4 book ai didi

python - 有条件地装箱

转载 作者:太空宇宙 更新时间:2023-11-04 00:42:26 24 4
gpt4 key购买 nike

是否可以在数据框中创建一个新列,其中“X”的 bins 基于另一列的值。下面的例子。

AR1、PO1 和 RU1 的 bin 彼此不同。

到目前为止,我只能获取“X”中所有值的分箱。

import pandas as pd
import numpy as np
import string
import random

N = 100
J = [2012,2013,2014]
K = ['A','B','C','D','E','F','G','H']
L = ['h','d','a']
S = ['AR1','PO1','RU1']

np.random.seed(0)

df = pd.DataFrame(
{'X': np.random.uniform(1,10,N),
'Y': np.random.uniform(1,10,N),
'J':np.random.choice(J, N),
'R':np.random.choice(L, N),
'S':np.random.choice(S,N)
})

df['bins_X'] = pd.qcut(df['X'], 10)

print(df.head())

enter image description here

我想要的输出:

enter image description here

编辑;

在我的真实数据上,我得到一个 ValueError:边缘不唯一。我可以用等级来解决这个问题吗?我如何将其添加到建议的解决方案中?

最佳答案

S 上的 groupby 中简单使用 pd.qcut

df['bins_X'] = df.groupby('S').X.apply(pd.qcut, q=10, labels=np.arange(10))

df.groupby(['bins_X', 'S']).size().unstack()

S AR1 PO1 RU1
bins_X
0 3 4 4
1 3 3 4
2 3 3 4
3 2 3 4
4 3 4 4
5 3 3 3
6 2 3 4
7 3 3 4
8 3 3 4
9 3 4 4

如果您希望它们具有自己独特的边缘,请不要使用 labels 参数

df['bins_X'] = df.groupby('S').X.apply(pd.qcut, q=10)

关于python - 有条件地装箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41303633/

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