I have a dataset of such form:
+--------+---+---------+--------+-------+-------+-------+
| | A | B | C | D | E |
+------------+---------+--------+-------+-------+-------+
| 0 | 1 | 2 | 3 | 4 | AB |
+------------+---------+--------+-------+-------+-------+
I want to compute the mean value of the rows values between B to D. So for row 0 will be:
B+C+D/(3) = 3
How can I do that?