我有数据格式如下, date time product value1 value2 value3 .. .. .. .. there are 10 different type of product. we call it P1, P2, P3, P4,....P10 I want to calculate Min/Max, mean, std of value1/2/3 for given product in a range of datetime. so my input is, dataset, $product, $begin_datetime, $end_datetime output is, min/max, mean, std Thanks for your help!
rolling window mean比较简单, rolling window max/std要实现O(N)比较难 都是leetcode上的题
s*x
8 楼
递进去了,没看 进去等了1个小时,不过去得早,成都对时间卡得不严,多不多不好说
【在 l*****6 的大作中提到】 : 恭喜恭喜!! : 给签证官的信他看了么?现在签的人多么?
s*V
9 楼
这么简单的数据,裸写也不是个事
【在 s****n 的大作中提到】 : 我有数据格式如下, : date time product value1 value2 value3 : .. : .. : .. : .. : there are 10 different type of product. we call it P1, P2, P3, P4,....P10 : I want to calculate Min/Max, mean, std of value1/2/3 for given product : in a range of datetime. : so my input is,