Is there a canonical way to compute the element-wise mean of a list of DataFrames with identical columns and indices?
The best way I can think of is
from functools import reduce
dfs = [df1, df2, df3, df4, df5]
reduce(lambda x, y: x.add(y), dfs) / len(dfs)