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