msum2

语法

msum2(X, window, [minPeriods])

参数说明和窗口计算规则请参考:mFunctions

详情

在给定长度(以元素个数或时间长度衡量)的滑动窗口内计算 X 元素的平方和。请注意,该函数的返回值是 DOUBLE 类型。

例子

X = 2 1 3 7 6 5 4
Y = 2 1 3 NULL 6 5 4

msum2(X, 3)
# output
[,,14,59,94,110,77]

msum2(Y, 3)
# output
[,,14,10,45,61,77]

msum2(Y, 3, minPeriods=1)
# output
[4,5,14,10,45,61,77]

m = matrix(1 NULL 4 NULL 8 6 , 9 NULL NULL 10 NULL 2)
m.rename!(date(2021.08.16)+1..6, `col1`col2)
m.setIndexedMatrix!()
msum2(m, 3d)  // 等价于 msum2(m, 3)
label col1 col2
2021.08.17 1 81
2021.08.18 1 81
2021.08.19 17 81
2021.08.20 16 100
2021.08.21 80 100
2021.08.22 100 104

相关函数:sum2