Skip to content

Commit

Permalink
README: shorten custom formulas
Browse files Browse the repository at this point in the history
  • Loading branch information
woctezuma authored Mar 7, 2024
1 parent 450e005 commit d28b54f
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,24 +64,16 @@ Results are shown in the Wiki for:

```js
const C = 1117 ;
const totalReviews = game.votes ;

const m = 0.756 ;
const positiveReviews = game.positiveVotes ;

return (C * m + positiveReviews) / (C + totalReviews);
return (C * m + game.positiveVotes) / ( C + game.votes) ;
```

- Using **median values** obtained on September 3, 2023 for the **prior**:

```js
const C = 17 ;
const totalReviews = game.votes ;

const m = 0.822 ;
const positiveReviews = game.positiveVotes ;

return (C * m + positiveReviews) / (C + totalReviews);
return (C * m + game.positiveVotes) / ( C + game.votes) ;
```

## Appendix: data
Expand Down

0 comments on commit d28b54f

Please sign in to comment.