forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): add
approx_quantiles
for computing approximate quantiles
- Loading branch information
Showing
23 changed files
with
307 additions
and
24 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
.../backends/bigquery/tests/unit/snapshots/test_compiler/test_approx_quantiles/array/out.sql
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,7 @@ | ||
SELECT | ||
[ | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[1], | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[2], | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[3] | ||
] AS `qs` | ||
FROM `functional_alltypes` AS `t0` |
3 changes: 3 additions & 0 deletions
3
.../bigquery/tests/unit/snapshots/test_compiler/test_approx_quantiles/complete-array/out.sql
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,3 @@ | ||
SELECT | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS) AS `qs` | ||
FROM `functional_alltypes` AS `t0` |
3 changes: 3 additions & 0 deletions
3
...backends/bigquery/tests/unit/snapshots/test_compiler/test_approx_quantiles/scalar/out.sql
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,3 @@ | ||
SELECT | ||
approx_quantiles(`t0`.`double_col`, 2 IGNORE NULLS)[1] AS `qs` | ||
FROM `functional_alltypes` AS `t0` |
7 changes: 7 additions & 0 deletions
7
.../bigquery/tests/unit/snapshots/test_compiler/test_approx_quantiles/shuffled-array/out.sql
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,7 @@ | ||
SELECT | ||
[ | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[2], | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[1], | ||
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[3] | ||
] AS `qs` | ||
FROM `functional_alltypes` AS `t0` |
3 changes: 3 additions & 0 deletions
3
...s/bigquery/tests/unit/snapshots/test_compiler/test_approx_quantiles/tricky-scalar/out.sql
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,3 @@ | ||
SELECT | ||
approx_quantiles(`t0`.`double_col`, 100000 IGNORE NULLS)[33333] AS `qs` | ||
FROM `functional_alltypes` AS `t0` |
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
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
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
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
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
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
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
Oops, something went wrong.