A rating is the evaluation or assessment of something, in terms of quality, quantity, or some combination of both. Examples include: - Web content voting, a system where users rate Web content - Reputation system, a score for a set of objects within the community based on a collection of opinions - Performance Rating, in computing
Questions tagged [rating]
838 questions
6
votes
2 answers
Half star with CSS
How can I have the same result (a half star) in IE and Chrome.
In chrome : http://jsfiddle.net/Auqj8/
.star {
font-size: x-large;
width: 50px;
display: inline-block;
color: gray;
}
.star:last-child {
margin-right:…

zak zak
- 109
- 2
- 3
- 10
6
votes
3 answers
MySQL 5-star rating datatype?
Would ENUM('1','2','3','4','5') be a sensible datatype for a product rating which must be between 1 and 5?
Thanks!

Danny King
- 1,941
- 6
- 24
- 37
6
votes
1 answer
Custom Android Rating Bar stretching image
I'm having a little problem when using a custom rating bar style. I've read other topics on this, but the proposed solutions/answers are not solving the problem.
Android seems to be stretching part of the star image, creating this strange effect:…

takecare
- 1,684
- 3
- 21
- 32
5
votes
1 answer
Star rating, implementing Wilson score interval
class Rating
{
public static function ratingAverage($positive, $total, $power = '0.05')
{
if ($total == 0)
return 0;
$z = Rating::pnormaldist(1-$power/2,0,1);
$p = 1.0 * $positive / $total;
$s = ($p + $z*$z/(2*$total) - $z *…

Johan
- 35,120
- 54
- 178
- 293
5
votes
2 answers
Error: No named parameter with the name 'onRatingChanged'
I try to run the app but I receive these errors :
Compiler message:
../../../Developer/flutter/.pub-cache/hosted/pub.dartlang.org/rate_my_app-0.6.0+2/lib/src/dialogs.dart:272:17: Error: No named parameter with the name 'onRatingChanged'.
…

Alex Ali
- 1,339
- 5
- 23
- 34
5
votes
1 answer
Swing star rating
Is there any Swing Star rating widget.. am thinking of implementing my own .. but finding one will save me so much time
Thank you

AhmadAssaf
- 3,556
- 5
- 31
- 42
5
votes
2 answers
How would rating system be done for users in a web application?
I am implementing a web application that has many users and I would give the users rating based on their activities and based on other users liking their activities. How would I implement such an algorithm for that? I am looking for elegant and…

turbonerdo
- 77
- 8
5
votes
3 answers
Up/down voting script
I'm trying to develop a voting system in PHP for my posts where visitors can vote them up or down and then I should be able to sort posts by highest/lowest rated.
Can anyone please recommend a good script I can use for this?

Vvv
- 53
- 1
- 4
5
votes
1 answer
Simple jQuery Star Rating and AngularJs (ng-repeat)
Oh Boy, Oh Boy
I want to use this plugin
http://www.jqueryscript.net/other/Simple-jQuery-Star-Rating-System-For-Bootstrap-3.html
together with angularjs.
As long as I use a JSON that is initilized when I first time load the page it is working. When…

Tower Jimmy
- 567
- 1
- 4
- 15
5
votes
1 answer
letsrate gem wrong number of arguments error
I'm using using letsrate gem and getting the following error:
ArgumentError - wrong number of arguments (3 for 2):
lib/letsrate/lib/letsrate/model.rb:69:in `letsrate_rateable'
app/models/model_definition.rb:3:in…

Anbazhagan p
- 943
- 1
- 14
- 27
5
votes
3 answers
PHP/MySQL - algorithm for "Top Rated"
So I just built a star-rating system and and trying to come up with an algorithm to list the "Top Rated" items. For simplicity, here are the columns:
item_name
average_rating (a decimal from 1 to 5)
num_votes
I'm trying to determine the "sweet…

Matt
- 3,778
- 9
- 35
- 36
4
votes
1 answer
selenium accessing mouseMove js function
I am using Selenium to give rating to some video.
The page source for the rating is:


Aspirant
- 2,238
- 9
- 31
- 43
4
votes
2 answers
Rate app on android market inside the app
Android Market ratings are important to app developers. I've often seen applications saying something like "Please consider rating us" and then have buttons for "Ok take me to market" / "Not right now".
What I would love to do is show the user a…

vertti
- 7,539
- 4
- 51
- 81
4
votes
1 answer
In-App Review prompt is not visible after click "Not now" or "Cancel"
I integrated the In-app Review provided by Google. I followed the documentation exactly as it is written. I hosted the app on Play store for testing, the prompt shows up the first time correctly. But when I click on Not now or Cancel, the prompt…

Deeksha
- 536
- 5
- 14
4
votes
3 answers
Customer Ratings on Apple Appstore?
I don't know whats wrong with Apple Customer Ratings system on Appstore.
Recently I have uploaded two apps on appstore. And still there are no ratings/reviews on apps. Infact I observed there are 1000s of downloads has been made in last 2 days.
To…

Tariq
- 9,861
- 12
- 62
- 103