Does Pandas contain an easy method to apply a mapper to each row at at time?
For example:
import pandas as pd
df = pd.DataFrame(
    [[j + (3*i) for j in range(3)] for i in range(4)],
    columns=['a','b','c']
)
print(df)
   a   b   c
0  0   1   2
1  3   4   5
2  6   7   8
3  9  10  11
And then apply some mapper (in pseudocode)
df_ret = df.rowmap(lambda d: d['a'] + d['c'])
print(df_ret)
   0
0  2
1  8
2  14
3  20
Note, adding numbers really isn't the point here. The point is to have a row-wise mapper.
                        
You can use
applywith parameteraxis=1:but faster is use vectorized solutions: