我有一个数据框,格式如下:W1 W2 W3 W4 W5 W6 W7 W8 0 0 1 0 1 1 1 1 0 0 1 0 0 1 1 1 0 1 0 0 1 1 0 0 1 0 0 0 1 1 0 1
有一个参数diff=3。
我在每一行中查找从W1到W4的列并搜索最后1它将在w3、w3、w2、w1列中。随后,我将整行中此1右侧的下3个(diff)元素更改为0。
参见示例,我用x标记了这些元素:W1 W2 W3 W4 W5 W6 W7 W8 0 0 1 x x x 1 1 0 0 1 x x x 1 1 0 1 x x x 1 0 0 1 x x x 1 1 0 1
最终结果:W1 W2 W3 W4 W5 W6 W7 W8 0 0 1 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 1 0 0 0 1 1 0 1
现在,我有一个非常复杂的解决方案,它使用iterrows()
,但我正在寻找一个泛化的解决方案。
最佳答案
使用:
df = df.mask(df.cumsum(axis=1).ge(1).cumsum(axis=1).isin([2,3,4]), 0)
print (df)
W1 W2 W3 W4 W5 W6 W7 W8
0 0 0 1 0 0 0 1 1
1 0 0 1 0 0 0 1 1
2 0 1 0 0 0 1 0 0
3 1 0 0 0 1 1 0 1
说明:
每行使用
cumsum
:print (df.cumsum(axis=1))
W1 W2 W3 W4 W5 W6 W7 W8
0 0 0 1 1 2 3 4 5
1 0 0 1 1 1 2 3 4
2 0 1 1 1 2 3 3 3
3 1 1 1 1 2 3 3 4
通过
>=1
与ge
进行通信:print (df.cumsum(axis=1).ge(1))
W1 W2 W3 W4 W5 W6 W7 W8
0 False False True True True True True True
1 False False True True True True True True
2 False True True True True True True True
3 True True True True True True True True
再次
cumsum
通过boolen mask:print (df.cumsum(axis=1).ge(1).cumsum(axis=1))
W1 W2 W3 W4 W5 W6 W7 W8
0 0 0 1 2 3 4 5 6
1 0 0 1 2 3 4 5 6
2 0 1 2 3 4 5 6 7
3 1 2 3 4 5 6 7 8
通过
2,3,4
比较接下来的3个值,首先省略:print (df.cumsum(axis=1).ge(1).cumsum(axis=1).isin([2,3,4]))
W1 W2 W3 W4 W5 W6 W7 W8
0 False False False True True True False False
1 False False False True True True False False
2 False False True True True False False False
3 False True True True False False False False
如果需要,请定义
n
和DIFF
值:df = pd.DataFrame({'W1': [0, 0, 0, 0], 'W2': [0, 0, 1, 0],
'W3': [1, 1, 0, 0], 'W4': [0, 0, 0, 0],
'W5': [1, 0, 1, 0], 'W6': [1, 1, 1, 0],
'W7': [1, 1, 0, 0], 'W8': [1, 1, 0, 1]})
print (df)
W1 W2 W3 W4 W5 W6 W7 W8
0 0 0 1 0 1 1 1 1
1 0 0 1 0 0 1 1 1
2 0 1 0 0 1 1 0 0
3 0 0 0 0 0 0 0 1
DIFF = 4
n = 3
#select columns for check by positions
subset = df.iloc[:, :n]
#replace 0 to NaNs replace back filling, change order of columns with cumsum
last_1 = subset.mask(subset == 0).bfill(axis=1).iloc[:, ::-1].cumsum(axis=1)
print (last_1)
W3 W2 W1
0 1.0 2.0 3.0
1 1.0 2.0 3.0
2 NaN 1.0 2.0
3 NaN NaN NaN
#add missing columns and create ones rows by forward filling
df1 = last_1.reindex(index=df.index, columns=df.columns).ffill(axis=1)
print (df1)
W1 W2 W3 W4 W5 W6 W7 W8
0 3.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0
1 3.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0
2 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0
3 NaN NaN NaN NaN NaN NaN NaN NaN
#compare by 1 and get cumsum
print (df1.eq(1).cumsum(axis=1))
W1 W2 W3 W4 W5 W6 W7 W8
0 0 0 1 2 3 4 5 6
1 0 0 1 2 3 4 5 6
2 0 1 2 3 4 5 6 7
3 0 0 0 0 0 0 0 0
#last check range of values
df = df.mask(df1.eq(1).cumsum(axis=1).isin(range(2, DIFF + 2)), 0)
print (df)
W1 W2 W3 W4 W5 W6 W7 W8
0 0 0 1 0 0 0 0 1
1 0 0 1 0 0 0 0 1
2 0 1 0 0 0 0 0 0
3 0 0 0 0 0 0 0 1
关于python - 当需要为每行选择不同的列时如何更改数据框值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50695000/