题解 | #对试卷得分做min-max归一化#

对试卷得分做min-max归一化

https://www.nowcoder.com/practice/2b7acdc7d1b9435bac377c1dcb3085d6

# 请你将用户作答高难度试卷的得分在每份试卷作答记录内执行min-max归一化后缩放到[0,100]区间,并输出用户ID、试卷ID、归一化后分数平均值;最后按照试卷ID升序、归一化分数降序输出。(注:得分区间默认为[0,100],如果某个试卷作答记录中只有一个得分,那么无需使用公式,归一化并缩放后分数仍为原分数)。

select 
    uid,
    exam_id,
    if(avg(max_s)=avg(min_s),round(avg(score),0),
    round(avg(100*(score-min_s)/(max_s-min_s)), 0)
    ) as avg_new_score
from
(
select 
    uid,
    exam_id,
    score,
    max(score) over(partition by exam_id) as max_s,
    min(score) over(partition by exam_id) as min_s
from exam_record
where exam_id in(
    select exam_id from examination_info where difficulty = 'hard'
) and score is not null
)t1
group by uid, exam_id
order by exam_id, avg_new_score desc

全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务