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