miller/test/cases/dsl-stats/count/various/expout
John Kerl d341cc6dd3
DSL functions for summary stats over arrays / maps (#1364)
* DSL stats functions [WIP]

* refactor

* move percentile computation to bifs module; iterate

* mode and antimode

* percentile iterate

* percentile sketching

* neaten

* unit-test iterate

* unify old & new min & max functions

* unit-test cases

* code-dedupe between mode and antimode

* make mode/antimode ties deterministic via first-found-wins rule

* online help strings for new stats DSL functions

* artifacts from `make dev`

* help info on how min/max now recurse into collections

* artifacts from `make dev`

* typofix
2023-08-26 16:02:30 -04:00

20 lines
556 B
Text

count_0 (error)
count_0_type error
count_null (error)
count_null_type error
count_empty_array 0
count_empty_array_type int
count_array_1 1
count_array_1_type int
count_array_3 3
count_array_3_type int
count_array_nested 3
count_array_nested_type int
count_empty_map 0
count_empty_map_type int
count_map_1 1
count_map_1_type int
count_map_3 3
count_map_3_type int
count_map_nested 3
count_map_nested_type int