I have 25 data frames in the form of a list like this(three shown here, three is sufficient for sample calculations):
df1 <- data.frame(c(1, 3, 2, 4, 2, 2,4), c(4, 5, 2, 5, 6, 3, 2))
df2 <- data.frame(c(4, 2, 5, 2, 5, 2, 6), c(6, 3, 2, 6, 2, 6, 3))
df3 <- data.frame(c(1, 3, 2, 4, 2, 2,4), c(4, 5, 2, 5, 6, 3, 2))
list <- list(df1, df2, df3)
I want to make another data frame which contains the average value in each cell, and next to that I want the standard deviation. So it will be a 4 column by 7 row data frame which contains mean and standard deviation of each cell in the data frame.
How can this be done? My data also has way more than 7 rows.