Making WordPress.org

Changes between Version 6 and Version 7 of Ticket #2686, comment 22


Ignore:
Timestamp:
12/15/2020 07:47:12 PM (4 years ago)
Author:
edo888
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2686, comment 22

    v6 v7  
    1212}}}
    1313
    14 I want to compare 2 plugins A and B.
    15 A has 100 resolved tickets out of 200 and has 4.5 average rating from 300 reviews.
    16 B has 20 resolved tickets out of 20 and has 4.9 average rating from 2000 reviews.
     14**I want to compare 2 plugins A and B:**
     15A has **100** resolved tickets out of **200** and has **4.5** average rating from **300** reviews.
     16B has **20** resolved tickets out of **20** and has **4.9** average rating from **2000** reviews.
    1717
    18 So for A and B the multiplier from support threads resolved is:
     18So for **A** and **B** the multiplier from support threads resolved are:
    1919{{{
    2020Math.log10(100 + 2) = 2.0 -- A
     
    2222}}}
    2323
    24 2 vs 1.34, it seems to make a real difference.
     24It seems to make a real difference.
    2525
    26 When you calculate the rating lower bound with new algorithm for plugin A with 4.5 rating ~300 reviews it is 4.33, and same for a plugin with 4.9 rating ~2000 reviews it is 4.87.
     26Now let's calculate the rating lower bound with new algorithm for plugin **A** and **B**:
    2727
    2828{{{
    29 $wilson->rating_lower_bound(4.5, 300, array(1, 5), array('correction' => true)) = 4.33
    30 $wilson->rating_lower_bound(4.9, 2000, array(1, 5), array('correction' => true)) = 4.87
     29$wilson->rating_lower_bound(4.5, 300, array(1, 5), array('correction' => true)) = 4.33 # A
     30$wilson->rating_lower_bound(4.9, 2000, array(1, 5), array('correction' => true)) = 4.87 # B
    3131}}}
    3232
    33 So the multiplier is sqrt(4.33) vs sqrt(4.87) for rating.
     33So the multiplier is **sqrt(4.33)** vs **sqrt(4.87)** for rating.
    3434
    3535{{{