Given three lists:
A = [1, 2, 3]
B = [4, 5, 6]
C = [7, 8, 9]
How do I calculate the mean of the following (the columns)?
- Mean of [1, 4, 7]
- Mean of [2, 5, 8]
- Mean of [3, 6, 9]
Not the following (the rows),
- Mean of [1, 2, 3]
- Mean of [4, 5, 6]
- Mean of [7, 8, 9]
import numpy as np
A = np.array([1,2,3])
B = np.array([4,5,6])
C = np.array([7,8,9])
What should I do?