pandas replace first five rows code example
Example 1: python replace pandas df elements if they aren't in a list
df.loc[~df['col_name'].isin(list_of_allowed_vals), "col_name"] = "None"
dataframe = pd.DataFrame(['ok','keep','wtf','ok'], columns=['col_name'])
print(dataframe)
col_name
0 ok
1 keep
2 wtf
3 ok
list_of_allowed_vals = ['ok', 'keep']
dataframe.loc[~dataframe['col_name'].isin(list_of_allowed_vals), "col_name"] = "None"
print(dataframe)
col_name
0 ok
1 keep
2 None
3 ok
dataframe[~dataframe.isin(list_of_allowed_vals)] = "None"
Example 2: pandas find fifth caracter in field and change cell based on that number
data['result'] = data['result'].map(lambda x: x.lstrip('+-').rstrip('aAbBcC'))