I'm doing some statistical processing of experimental data using R.
I have multiple files, each one with identical structure. Each row of each file has measurements made at the same time, for different dates, so that the general structure is like this:
time C1 C2 C3
19:00 200 10.0 30
19:01 220 10.0 45
...
What I need is to create a file with a summary of the values of one column from multiple files, so I will have, for example, the average and stdev of C2 at each time, along consecutive days.
time avg dev
19:00 205.0 30.0
19:01 220.0 10.0
...