max() function

max() returns the row with the maximum value in a specified column from each input table.

Note: max() drops empty tables.

Function type signature
(<-tables: stream[A], ?column: string) => stream[A] where A: Record

For more information, see Function type signatures.

Parameters

column

Column to return maximum values from. Default is _value.

tables

Input data. Default is piped-forward data (<-).

Examples

Return the row with the maximum value from each input table

import "sampledata"

sampledata.int()
    |> max()

View example input and output


Was this page helpful?

Thank you for your feedback!