Hi,
I would greatly appreciate any suggestions about how to transform a large data file containing values recorded in milliseconds (custom time format: d.mm.yyyy hh:mm:ss.000), to a separate data table showing the average of these values for other longer time periods (eg. seconds, minutes, hours etc).
My original data recorded in milliseconds looks like this:
[TABLE="width: 371"]
<tbody>[TR]
[TD]Time (milliseconds)[/TD]
[TD]decay1[/TD]
[TD]decay2[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:00.285[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]6[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:00.441[/TD]
[TD="align: right"]8[/TD]
[TD="align: right"]2[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01.595[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]1[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01.861[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01.992[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]8[/TD]
[/TR]
</tbody>[/TABLE]
I want to transform it into a separate data file that reports (for example) the average of the values recorded during each one second period in the original table above:
[TABLE="width: 371"]
<tbody>[TR]
[TD]Time (seconds)[/TD]
[TD]decay1[/TD]
[TD]decay2[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:00[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]6[/TD]
[/TR]
</tbody>[/TABLE]
I've looked through previous forum posts and elsewhere about pivot tables but couldn't find a solution to this.
Thanks in advance,
Ruede
I would greatly appreciate any suggestions about how to transform a large data file containing values recorded in milliseconds (custom time format: d.mm.yyyy hh:mm:ss.000), to a separate data table showing the average of these values for other longer time periods (eg. seconds, minutes, hours etc).
My original data recorded in milliseconds looks like this:
[TABLE="width: 371"]
<tbody>[TR]
[TD]Time (milliseconds)[/TD]
[TD]decay1[/TD]
[TD]decay2[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:00.285[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]6[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:00.441[/TD]
[TD="align: right"]8[/TD]
[TD="align: right"]2[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01.595[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]1[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01.861[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01.992[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]8[/TD]
[/TR]
</tbody>[/TABLE]
I want to transform it into a separate data file that reports (for example) the average of the values recorded during each one second period in the original table above:
[TABLE="width: 371"]
<tbody>[TR]
[TD]Time (seconds)[/TD]
[TD]decay1[/TD]
[TD]decay2[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:00[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]10.10.2017 00:00:01[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]6[/TD]
[/TR]
</tbody>[/TABLE]
I've looked through previous forum posts and elsewhere about pivot tables but couldn't find a solution to this.
Thanks in advance,
Ruede