gpt4 book ai didi

python - 如何根据数据框中各个列的不同 bool 标准创建新列

转载 作者:行者123 更新时间:2023-12-01 07:57:26 25 4
gpt4 key购买 nike

我想创建一个二进制列,如果数据帧中的一列满足逻辑条件 A 并且数据帧中的另一列满足逻辑条件 A 或逻辑条件 B,则该二进制列标记为"is"。因此,如果两个单独的列满足上述条件。

每列是每年的单独产品计数。条件 A:如果产品(即“c1”)在当年销售了 8 种产品,前一年销售了 1 到 6 种产品,上一年(2 年前)销售了 1 到 6 种产品,则满足条件 A。条件 B:如果任何其他产品(即不是“c1”而是“c3”)满足上述条件 A 或当年售出 8 件、前一年售出 8 件、两年前售出 8 件,则满足条件 B。因此,如果特定年份中的任意 2 列恰好满足上述条件,则成功只能为 1。一列必须满足条件 A,另一列必须满足条件 B。

import numpy as np
import pandas as pd
df = pd.DataFrame({'C1':[7,3,2,8,3,4,6,8,3,2],'C2':[2,5,4,8,8,8,3,2,8,4],'C3': [7,5,4,6,7,8,6,8,1,7],
'C4':[3,4,4,6,4,2,6,3,2,6],'C5':[6,4,0,8,4,2,6,6,7,8],'Year':[2010,2011,2012,2013,2014,2015,2016,2017,2018,2019]})
df.set_index('Year', inplace=True)
df1 =df[::-1]
df1
_1_CorrA =((df1.eq(8)) & (df1.shift(-1).isin([1,6])) & (df1.shift(-2).isin([1,6]))).sum(axis=1)==1

_1_CorrB =(((df1.eq(8)) & (df1.shift(-1).eq(8)) & (df1.shift(-2).eq(8))) |
((df1.eq(8)) & (df1.shift(-1).isin([1,6])) & (df1.shift(-2).isin([1,6])))).sum(axis=1)==1


Strategy = (((_1_CorrA) & (_1_CorrB)))

df1['Success']=np.where(Strategy,1,0)


Expected Results我希望在索引行 2015 和 2013 中看到 1,因为这是仅有的两行,其中两个不同的列恰好满足上述条件。

最佳答案

成功意味着恰好有两列满足条件 A (a.sum(1).eq(2)),或者一列满足条件 A,另一列满足条件 B,其中当前年份和每个前两年等于目标值 8。

为了确保同一列不能同时满足条件 A 和条件 B,我从条件 A 中获取成功的列,并确保它不等于从条件 B 中成功的列 (a.idxmax(1 ).ne(b.idxmax(1)))。仅当条件 A 和条件 B 都成功时才会进行此比较,因此我可以使用 idxmax 来获取通过条件的列。

target = 8 
upper_limit = 6
lower_limit = 1
df1_shift1 = df1.shift(-1)
df1_shift2 = df1.shift(-2)

a = (
df1.eq(target)
& df1_shift1.ge(lower_limit)
& df1_shift1.le(upper_limit)
& df1_shift2.ge(lower_limit)
& df1_shift2.le(upper_limit)
)
b = (
df1.eq(target)
& df1_shift1.eq(target)
& df1_shift2.eq(target)
)
success = (
a.sum(1).eq(2)
| (a.sum(1).eq(1)
& b.sum(1).eq(1)
& a.idxmax(1).ne(b.idxmax(1)))
)
>>> df1.assign(Success=success)
C1 C2 C3 C4 C5 Success
Year
2019 2 4 7 6 8 False
2018 3 8 1 2 7 False
2017 8 2 8 3 6 False
2016 6 3 6 6 6 False
2015 4 8 8 2 2 False
2014 3 8 7 4 4 False
2013 8 8 6 6 8 True
2012 2 4 4 4 0 False
2011 3 5 5 4 4 False
2010 7 2 7 3 6 False

关于python - 如何根据数据框中各个列的不同 bool 标准创建新列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55892435/

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