lambda function if statement pandas code example
Example 1: pandas lambda if else
df['equal_or_lower_than_4?'] = df['set_of_numbers'].apply(lambda x: 'True' if x <= 4 else 'False')
Example 2: lambda in pandas
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function