Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我只有喜欢/不喜欢,5 星评级的公式是什么。
如果我有 3244 个喜欢和 45 个不喜欢,0-5 星的评分是多少?(4.9 的东西,我怎么计算呢)
我想你可以只使用:
likes / (likes + dislikes) * 5
因此,对于您的示例,3244 / (3244 + 45) * 5 = 4.93. 我将把这个简单的公式转换为 Mathematica 代码的工作留给您。
3244 / (3244 + 45) * 5 = 4.93