Pandas根据条件重命名所有连续的行

问题描述 投票:0回答:1

我有类似的数据帧:

enter image description here

您可以使用以下代码重新创建它:

import pandas as pd
df = pd.DataFrame({
    'A' : 1.,
    'name' :  pd.Categorical(["hello","hello","hello","hello"]),
    'col_2' : pd.Categorical(["2","2","12","Nan"]),
    'col_3' : pd.Categorical(["11","1","3","Nan"])})

我想在“col_2”或“col_3”高于10的每一行中更改“name”的值。

因此,如果“col_2”或“col_3”中的数字大于10,则应重命名直到下一个大于10的数字的所有行。

这是最终应该是什么样子:

enter image description here

python python-3.x pandas cumsum
1个回答
1
投票

你可以用cumsum实现它

name_index = df[['col_2', 'col_3']]\
    .apply(pd.to_numeric, errors='coerce')\ 
    .ge(10)\
    .any(axis=1)\
    .cumsum()
df['name'] = df['name'].astype(str) + '_' + name_index.astype(str)
print(df)

    A    col_2  col_3   name
0   1.0  2      11      hello_1
1   1.0  2      1       hello_1
2   1.0  12     3       hello_2
3   1.0  NaN    NaN     hello_2
© www.soinside.com 2019 - 2024. All rights reserved.