highestCurrent() 函数
highestCurrent()
从每个输入表中选择最后一条记录并返回最高的 n
条记录。
注意: highestCurrent()
会丢弃空表。
函数类型签名
(<-tables: stream[A], n: int, ?column: string, ?groupColumns: [string]) => stream[A] where A: Record
参数
n
(必需) 返回的记录数。
column
要评估的列。默认为 _value
。
groupColumns
按列分组的列列表。默认为 []
。
tables
输入数据。默认为管道转发数据 (<-
)。
示例
从表流中返回最高当前值
import "sampledata"
sampledata.int()
|> highestCurrent(n: 1, groupColumns: ["tag"])
本页有帮助吗?
感谢您的反馈!