I\'m curious what the difference is between using df.apply(func) as opposed to df.apply(lambda x: func(x)). I\'ve seen both used and the lambda functio
df.apply(func)
df.apply(lambda x: func(x))