提供表格
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中本地执行此操作的方法
答案 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;