-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
### Operator | ||
|
||
  **top** — get top N sorted values of input sequence | ||
|
||
### Synopsis | ||
|
||
``` | ||
top <const-expr> <expr> [, <expr> ...] | ||
``` | ||
### Description | ||
|
||
The `top` operator returns the top N values from a sequence sorted in descending | ||
order by one or more expressions. N is given by `<const-expr>`, a compile-time | ||
constant expression that evaluates to a positive integer. | ||
|
||
`top` is functionally similar to [`sort`](sort.md) but is less resource | ||
intensive because only the top N values are stored in memory (i.e., values | ||
less than the minimum are discarded). | ||
|
||
### Examples | ||
|
||
_Grab the top two values from a sequence of integers_ | ||
```mdtest-command | ||
echo '1 5 3 9 23 7' | zq -z 'top 2 this' - | ||
``` | ||
=> | ||
```mdtest-output | ||
23 | ||
9 | ||
``` | ||
_Find the two names most frequently referenced in a sequence of records_ | ||
```mdtest-command | ||
echo '{name:"joe", age:22} {name:"bob", age:37} {name:"liz", age:25} | ||
{name:"bob", age:18} {name:"liz", age:34} {name:"zoe", age:55} | ||
{name:"ray", age:44} {name:"sue", age:41} {name:"liz", age:60}' | | ||
zq -z 'count() by name | top 2 count' - | ||
``` | ||
=> | ||
```mdtest-output | ||
{name:"liz",count:3(uint64)} | ||
{name:"bob",count:2(uint64)} | ||
``` |