We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output for counts in SQL (outlier_count, total_count) are formatted as floats, but counts should always be integer-valued (I think).
outlier_count
total_count
e.g.,
macrobase-sql> SELECT * FROM DIFF(SPLIT (SELECT *, percentile(battery_drain) AS percentile from mobile) WHERE percentile > .99) ON *; 67156 [main] INFO QueryEngine - Using user_id, state, hw_make, firmware_version, app_version as candidate attributes for explanation 67265 [main] INFO APLSummarizer - Encoded in: 109 ms 67265 [main] INFO APLSummarizer - Encoded Categories: 2 67299 [main] INFO APLSummarizer - Number of results: 2 2 rows ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | app_version | user_id | hw_make | state | firmware_version | support | global_ratio | outlier_count | total_count | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | v50 | - | - | - | - | .873185 | 89.883198 | 902.0 | 1003.0 | | - | - | Emdoor | - | - | .873185 | 89.883198 | 902.0 | 1003.0 | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The text was updated successfully, but these errors were encountered:
Related: Is there a reason why we have outlier_count versus a more generic population_A_cnt and population_B_cnt?
population_A_cnt
population_B_cnt
Sorry, something went wrong.
No branches or pull requests
Output for counts in SQL (
outlier_count
,total_count
) are formatted as floats, but counts should always be integer-valued (I think).e.g.,
The text was updated successfully, but these errors were encountered: