Can anyone see why this isn't working?
Its trying to do; if Column Name Contains the text 'Andy', then make a column called Andy and set that row = to 1
df.loc[df['Name'].str.contains(['Andy']),'Andy']=1
Can anyone see why this isn't working?
Its trying to do; if Column Name Contains the text 'Andy', then make a column called Andy and set that row = to 1
df.loc[df['Name'].str.contains(['Andy']),'Andy']=1
pd.Series.str.contains requires for its pat argument a "Character sequence or regular expression", not a list.
Just use Boolean assignment and convert to int. This will set unmatched rows to 0. For example:
# Name includes 'Andy'
df['Andy'] = df['Name'].str.contains('Andy').astype(int)
# Name includes 'Andy' or 'Andrew'
df['Andy'] = df['Name'].str.contains('Andy|Andrew').astype(int)