Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How is the average review score calculated? #7

Open
yoonseok312 opened this issue Feb 25, 2022 · 3 comments
Open

How is the average review score calculated? #7

yoonseok312 opened this issue Feb 25, 2022 · 3 comments
Labels
documentation Improvements or additions to documentation

Comments

@yoonseok312
Copy link

How is the average score calculated (round off / round up / round down)?
For instance, if the average score of review is 2.67 (3,3,2 from each reviewer), would that be considered as average score of 2.5 or 3?

@SebastinSanty
Copy link
Collaborator

SebastinSanty commented Feb 25, 2022

@yoonseok312 The scores rounded off to the nearest 0.5. Which means 2.67 would be 2.5 and anything above 2.75 would be 3. Note that we do this binning only to visualize the scores in form of a distribution on the stats page, otherwise all the scores are sent to venues as it is.

The actual formula used for computing is here:

round(sum(review_scores_list)/len(review_scores_list) * 2)/2

Does this answer your question?

(Also, thanks for raising this issue. I will add this information on the page)

@SebastinSanty SebastinSanty added the documentation Improvements or additions to documentation label Feb 25, 2022
@SebastinSanty
Copy link
Collaborator

Also, thinking about it again, maybe rounding it down may make more sense here.

@yoonseok312
Copy link
Author

Thank you for your reply!
Yes, this answers my question. I also thought round down would make more sense, but as long as the documentation on the webpage is clear it's not a huge deal :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants