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