I've average rating which is calculated by Mean formula. Now I want to calculate its percentage. I've following details:
- The calculated average rating (
(sum(rating)/totalGivenRatings)) - The total number of given ratings (
totalGivenRatings)
e.g. I've average 2.23 and total number of given ratings are 3
Please help me, I'm newbie in maths.
Edit 1
I've tried following:
(averageRating/totalGivenRatings)*100
but is it fine?
Got the answer from a friend. Followings are steps:
totalGivenRatings*MaxRating=sum(rating). e.g.3*5=15(Max rating is 5)averageRating*totalGivenRatings=totalRatinge.g.2.23*3=6.99(totalRating/sum(rating))*100e.g.6.99/15*100=46.6Thanks @RossMillikan for help and thanks to that friend also.