简体   繁体   中英

how to create and fill a new column based on conditions in two other columns?

How can I create a new column and fill it with values based on the condition of two other columns?

input:

    import pandas as pd
    import numpy as np

    list1 = ['no','no','yes','yes','no','no','no','yes','no','yes','yes','no','no','no']
    list2 = ['no','no','no','no','no','yes','yes','no','no','no','no','no','yes','no']

    df = pd.DataFrame({'A' : list1, 'B' : list2}, columns = ['A', 'B'])

    df['C'] = np.where ((df['A'] == 'yes') & (df['A'].shift(1) == 'no'), 'X', np.nan)
    df['D'] = 'nan','nan','X','X','X','X','nan','X','X','X','X','X','X','nan'

    print (df)

output:

          A    B    C    D
    0    no   no  nan  nan
    1    no   no  nan  nan
    2   yes   no    X    X
    3   yes   no  nan    X
    4    no   no  nan    X
    5    no  yes  nan    X
    6    no  yes  nan  nan
    7   yes   no    X    X
    8    no   no  nan    X
    9   yes   no    X    X
    10  yes   no  nan    X
    11   no   no  nan    X
    12   no  yes  nan    X
    13   no   no  nan  nan

Columns A and B will be givens and only contain 'yes' or 'no' values. There can only be three possible pairs ('no'-'no', 'yes'-'no', or 'no'-'yes'). There can never be a 'yes'-'yes' pair.

The goal is to place an 'X' in the new column when a 'yes'-'no' pair is encountered and then to continue filling in 'X's until there is a 'no'-'yes' pair. This could happen over a few rows or several hundred rows.

Column D shows the desired output.

Column C is the current failing attempt.

Can anyone help? Thanks in advance.

Try this:

df["E"] = np.nan

# Use boolean indexing to set no-yes to placeholder value
df.loc[(df["A"] == "no") & (df["B"] == "yes"), "E"] = "PL"

# Shift placeholder down by one, as it seems from your example
# that you want X to be on the no-yes "stopping" row
df["E"] = df.E.shift(1)

# Then set the X value on the yes-no rows
df.loc[(df.A == "yes") & (df.B == "no"), "E"] = "X"
df["E"] = df.E.ffill() # Fill forward

# Fix placeholders
df.loc[df.E == "PL", "E"] = np.nan

Results:

    A   B   C   D   E
0   no  no  nan nan NaN
1   no  no  nan nan NaN
2   yes no  X   X   X
3   yes no  nan X   X
4   no  no  nan X   X
5   no  yes nan X   X
6   no  yes nan nan NaN
7   yes no  X   X   X
8   no  no  nan X   X
9   yes no  X   X   X
10  yes no  nan X   X
11  no  no  nan X   X
12  no  yes nan X   X
13  no  no  nan nan NaN

You can use apply() to do that,

df['C'] = df[['A','B']].apply(yourfunction, axis=1)

Where your functions can be:

def yourfunction(cols):
   col_A = cols[0]
   col_B = cols[1]
   if YOURLOGIC:
      return X

you can try this way. Here, I use iterrows to loop over rows

import pandas as pd
import numpy as np

list1 = ['no','no','yes','yes','no','no','no','yes','no','yes','yes','no','no','no']
list2 = ['no','no','no','no','no','yes','yes','no','no','no','no','no','yes','no']

df = pd.DataFrame({'A' : list1, 'B' : list2}, columns = ['A', 'B'])

df['C'] = np.nan
to_check = 0
for ind, row in df.iterrows():
    if (row['A'] == 'yes') and (row['B'] == 'no'):
        to_check = 1
        df.loc[ind, 'C'] = 'X'
        continue
    
    if (row['A'] == 'no') and (row['B'] == 'yes'):
        if to_check == 1:
            df.loc[ind, 'C'] = 'X'
            to_check = 0
        continue

    if to_check == 1:
        df.loc[ind, 'C'] = 'X'


df['D'] = 'nan','nan','X','X','X','X','nan','X','X','X','X','X','X','nan'

print (df)

This would get the job done,

def needed_in():
  count = False
  for index in df.index:
    if df.loc[index, ["A", "B"]].tolist() == ["yes", "no"]:
      count = True
    
    if count:
      yield index

    if df.loc[index, ["A", "B"]].tolist() == ["no", "yes"]:
      count = False

df["C"] = np.nan
df.loc[needed_in(), "C"] = "X"

Output -

A B C
0 no no nan
1 no no nan
2 yes no X
3 yes no X
4 no no X
5 no yes X
6 no yes nan
7 yes no X
8 no no X
9 yes no X
10 yes no X
11 no no X
12 no yes X
13 no no nan

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM