There is a scenario of finding the sum of rows in a DF as follows
ID DEPT [..] SUB1 SUB2 SUB3 SUB4 **SUM1**
1 PHY 50 20 30 30 130
2 COY 52 62 63 34 211
3 DOY 53 52 53 84
4 ROY 56 52 53 74
5 SZY 57 62 73 54
Need to find row sum of SUB1 SUB2 SUB3 SUB4 for each rows and make as a new column SUM1. The ordinal position of the column SUB1 in the data frame is 16.