apply python dataframe code example
Example 1: pandas apply function to column
df['a'] = df['a'].apply(lambda x: x + 1)
Example 2: use apply with lambda pandas
df.apply(lambda x: func(x['col1'],x['col2']),axis=1)
Example 3: pandas apply function to dataframe
# iterate using this syntax where df is the pandas.DataFrame
# N. B.: a single tuple is composed by the row index
# and the values of the dataframe columns
for row in df.itertuples():
# do your stuff here