The Top N rows step allows you get the top N rows of your data based on value column to be ranked. The top can be performed by group if specified
Get top...*(int): specify the number of top rows to retain
Get top...
Sort column...*(string): the ranking will be based on this column (so its values must be sortable)
Sort column...
Sort order...*["asc", "desc"]: whether the you want the above column to e sorted on ascending (asc) or descending (desc) order
Sort order...
asc
desc
Group by... (array): if you want to return a top by group, you can select one or several columns that will be used to constitute unique groups
Group by...
Input
Configuration
Output
Last updated 2 months ago
Was this helpful?
{ "limit": 5, "rank_on": "salary", "sort": "desc" "group_by": [] }