how to select spectfic records into a new column using lambda code example
Example: lambda in pandas
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function