Answers for "python pandas set value if"

6

pandas lambda if else

df['equal_or_lower_than_4?'] = df['set_of_numbers'].apply(lambda x: 'True' if x <= 4 else 'False')
Posted by: Guest on November-17-2020
1

set value based on column

df.loc[df['c1'] == 'Value', 'c2'] = 10
Posted by: Guest on July-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language