I have multiple objects with names depth_*
I want to summarize them like that:
depth_PATH2 %>%
+ summarise(avg = mean(V3), sd = sd(V3), med = median(V3))
which gives:
avg sd med
1 1 0 1
But I'd link to run a loop over all those files so that I would get a giant table like:
avg sd med
depth_PATH2 1 0 1
depth_PGTH7 2 7 3
etc.
Can you help? Thanks!
M