I have a list:
AllProcessTimes = [ [[1,2,3], [1,2,3], [1,2,3]],
[[1,2,3], [1,2,3], [1,2,3]],
[[1,2,3], [1,2,3], [1,2,3]],
[[1,2,3], [1,2,3], [1,2,3]],
[[2,4,6], [3,6,9], [4,8,12]] ]
I want to calculate an average of each column so that the final result for this example would be:
AverageProcessTimes = [ [1.2, 2.4, 3.6], [1.4, 2.8, 4.2], [1.6, 3.2, 4.8] ]
How can I do this without creating a load of placeholder lists?