How can I properly display a like/dislike average briefly
A few days ago I asked a question about the best way to display a like/dislike rating
. I wanted to know how I can best show the balance between the two. Using the answers given I had made the following design:
On the homepage of my website I am displaying an overview consisting of all posted articles. I want to display the rating of the concerned article here as well, however, I don't have much space available and it's not possible to vote for this article here, so I need a different solution to display the overal rating of this article.
As shown in the picture below, I have tried displaying a percentage based on the given likes/dislikes percentage = (likes/total votes)*100
The problem is, that when only 1 vote has been given and it's a like, the article will have a 100% rating. This makes sorting the articles by rating unreliable.
So my question is:
Is there a better way to display the overal rating briefly so that sorting articles based on their rating is reliable?