【发布时间】:2015-08-02 19:07:43
【问题描述】:
我有一个 Excel 文件,其中包含时间日志和每次进行的测量,该列表将日志保存数天。我想计算每小时测量值的平均值和标准差。
我的问题是每个小时测量的数量不同,所以我什至无法开始。
列表如下所示:
Time measurement
28/8/2013 16:17 3831
28/8/2013 16:36 3668
28/8/2013 16:36 3685
28/8/2013 16:36 3676
28/8/2013 17:13 3671
28/8/2013 17:36 3669
28/8/2013 17:36 3664
28/8/2013 18:36 3654
28/8/2013 18:36 3661
我需要这样的输出:
Hour Average Stdv
28/08/2013 16:00 3715 77.64448897
28/08/2013 17:00 3668 3.605551275
28/08/2013 18:00 3657.5 4.949747468
有什么想法吗?
【问题讨论】:
标签: excel excel-formula average standard-deviation array-formulas