作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在Hive中模拟BigQuery的QUANTILES函数。
数据集:1,2,3,4
BigQuery的查询结果将返回值2
select nth(2, quantiles(col1, 3))
select percentile(col1, 0.5)
最佳答案
我猜您在寻找的是percentile_approx
UDF。
This page为您提供Hive中所有内置UDF的列表。
percentile_approx(DOUBLE col, p [, B])
Returns an approximate pth percentile of a numeric column (including floating point types) in the group. The B parameter controls approximation accuracy at the cost of memory. Higher values yield better approximations, and the default is 10,000. When the number of distinct values in col is smaller than B, this gives an exact percentile value.
关于hadoop - 如何在Hive中模拟BigQuery的分位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46098725/
我是一名优秀的程序员,十分优秀!