Questions tagged [rating-system]

A system commonly seen on websites that allows users to express their appreciation (or lack there of) of content or what the content is about.

A system commonly seen on websites that allows users to express their appreciation (or lack there of) of content. Default settings can be associated with ratings, such as collapsing comments that are voted down in a threaded view. In more complex systems various ratings can be accumulated as karma that allows a user to do more or less on a site, such as the reputation used here on stack. One of the earliest rating systems on the web is IMDB's movie rating, which did not rate the content of it's users but the movie.

259 questions
2
votes
0 answers

Ajax Star rating system not storing data to database

I am new to ajax and i am trying to store ratings for some songs i have on my website with a star rating system with the select tag but everytime i click on a specific star to rate the song it does nothing.The connection with the database is working…
F1_lover
  • 23
  • 5
2
votes
2 answers

Comment and Rating system for Django

I am new to Django, I don't know a lot of them. I am trying to build a comment and rating system for a blog in Django. There are some apps that I can use to achieve this(Comment and Rating)? Please let me know. Best Regards,
André
  • 24,706
  • 43
  • 121
  • 178
2
votes
1 answer

Need help to use Rating bar

I want to use rating bar in my android application. My game has 10 levels I want to show the stars according to the score/time user scored per level. A screen will have 10 images for each level and 10 rating bars also. Can any one help me with this.…
2
votes
0 answers

glicko2 rating different results with different run options

I am new to rating systems and glicko2 (i am interested in this system for two reasons license adjust the score fast, relative to ELO) I downloaded glicko2 original implementation from here https://code.google.com/archive/p/pyglicko2/ and run the…
shay te
  • 1,028
  • 3
  • 12
  • 23
2
votes
1 answer

Flooding Bayesian rating creates values out of range

I'm trying to apply the Bayesian rating formula, but if I rate 1 out of 5 thousand of hundreds, the final rating is greater than 5. For example, a given item has no votes and after voting 170,000 times with 1 star, its final rating is 5.23. If I…
rlcabral
  • 1,496
  • 15
  • 39
2
votes
4 answers

mysql update if some values exists otherwise create a new entry

I have a table rating with these fields rate_id, game_id, rating, ip. Let suppose that these fields has the following values 1,130,5,155.77.66.55 When a user try to vote for a game, I want with mysql to check if he has already vote for this game so…
Sotiris
  • 38,986
  • 11
  • 53
  • 85
2
votes
2 answers

How to avoid that a user removes his session

The use case Currently, I am trying to build a page where users can vote on content (up/downvote, similar to the function on the StackExchange network). But the users shouldn't need to register themselves to vote on content. So it would be a kind of…
manniL
  • 7,157
  • 7
  • 46
  • 72
2
votes
0 answers

Using nosql for rating sytem

I am building a platform where users can rate a musicians song. I have been using AWS mobile which only builds in dynamodb but no relational databases. I am just wondering whether is is possible to use a nosql database for the song rating…
2
votes
1 answer

How to provide multiple rating

I need to work in a rating system like this: I created a table called review like this: I have tried this query. SELECT AVG(`food`) as foodavg FROM review where `restaurant_id` = '10' But it gives average of only food. and i need to show the…
Adas
  • 309
  • 1
  • 18
2
votes
3 answers

Public Rating script, allowing 1 submission per visitor

I've written a .NET/jQuery rating script that allows users to rate a particular product. Everyone that visits the website can rate, but I'd like to only allow 1 rating per visitor. So far I've considered the following options. 1: Store the users IP…
Marko
  • 71,361
  • 28
  • 124
  • 158
2
votes
3 answers

How to get value in Star rating, jQuery

I am using the star rating from this site : link But I can't seem to figure out how to get the rating from my radio buttons. I just need to display it in the console.log, the rest I can manage. When the third is selected it looks like this: If any…
user3481441
2
votes
1 answer

Bayesian Algorithm for sorting hotel reviews

i'm trying to find a Formula or algorithm to sort the most useful rating for a set of hotel reviews. The thing is that i have in a determined place three different hotels that has the following information: Hotel A: 124 reviews, 8.6 avg…
Diego P.
  • 21
  • 1
2
votes
2 answers

Reddit/Hacker News style popularity time decay algorithm that can deal with negative rankings

I have a ranking system where users can upvote/downvote(+1/-1) objects, and each object has a cumulative rating_sum, which can be negative, zero or positive. I also record total number of times the objects has been rated in rating_count. I can thus…
fpghost
  • 2,834
  • 4
  • 32
  • 61
2
votes
3 answers

Allowing redundant data in the DB for the sake of performance

Let's say you're designing the DB schema for the next stack overflow and more specifically the part of the schema that handles question ratings. I assume you'd use a table like: ratings(question_id, user_id, rating) ... that will both record ratings…
Emanuil Rusev
  • 34,563
  • 55
  • 137
  • 201
2
votes
0 answers

Woocommerce rating once per user

I am using the ratings system that comes standard with woocommerce but if a user is logged into their account they can add multiple ratings/reviews for the same item over and over again. How can you restrict the user from doing that? If the user…
Matt
  • 53
  • 6