mimaxLast
语法
mimaxLast(X, window, [minPeriods])
参数
参数说明和窗口计算规则请参考: 滑动窗口系列(m 系列)
详情
在给定长度(以元素个数衡量)的滑动窗口内计算 X 元素的最大元素的位置。如果窗口内存在多个相同的最大值,则返回右起第一个最大值的位置。与所有其它聚合函数一致,计算时忽略 NULL 值。
例子
x = 1.2 2 NULL -1 6 -1
mimaxLast(x,3);
# output
[,,1,0,2,1]
m=matrix(3 2 4 4 2, 1 4 2 4 3);
mimaxLast(m,3)
# output
col1 col2
2 1
2 2
1 1
t=table(3 3 2 as c1, 1 4 4 as c2)
mimaxLast(t,3)
# output
c1 c2
1 2
相关函数:mimax