如何在PostgreSQL中获得超出百分比的百分比?

时间:2019-06-19 16:22:43

标签: python sql postgresql scipy percentile

提供表格

product1_id | score
A  |   2 
B  |   3

product2_id | score
W  |   1
X  |   2
Y  |   3
Z  |   4

我如何使用PostgreSQL在product2分数中找到product1分数的偏离百分位数,以获得预期的输出:

product1_id | score | out_of_set_percentile
A  |   2  |  50
B  |   3  |  75.

在python中,解决此问题的一种方法是合并表并应用scipy.percentileofscore

from scipy import stats
stats.percentileofscore([1, 2, 3, 4], 3)  # 75.0,

但是我想要一种在PostgreSQL中本地执行此操作的方法

1 个答案:

答案 0 :(得分:2)

这是一种蛮力方法:

select t1.product_id, t1.score,
       avg( (t2.score <= t1.score)::int ) as ratio
from t1 cross join
     t2
group by t1.product_id, t1.score;