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
-1
votes
2 answers

How to unselect all selected rating star when click on the same star in html?

I have developed a web page for the star ratings. I need to unselect the stars if the user clicks twice on the same star, how to unselect all the star rating values? that means if the user clicks on 3 stars for the rating and again click on the 3rd…
Sidath
  • 379
  • 1
  • 9
  • 25
-1
votes
1 answer

Average rating then join 2 tables using codeigniter

I need some help, I have 2 table, like this table a table b +-------+---------+ +---+--------+--------+ | no | name | | NO| cafe | rating | +-------+---------+ +---+--------+--------+ | 1 |…
Hazuka
  • 3
  • 1
-1
votes
1 answer

rating value always inserts as 1

please help me. I have a very small issue but i am not able to solve this... I am doing a rating system on php. whenever i submit the form the rating value always inserts as 1..I have checked everything but couldnot solve it. Here is the…
Debraz
  • 1
  • 1
-1
votes
2 answers

How to find rating in a 1v1 match based on the score?

So I am developing a game where there will be two players both having an initial rating. Now, I want to calculate new rating based on their score. For eg: if player1 scores 50(unitless) and player2 scores 30, then player1 rating should increase…
-1
votes
1 answer

Is there a way to make a 5 star rating system using django restframework with the models I have created?

I am trying to make an API using django RESTframework for a 5-star rating system. The API should render the list of all products in the home URL, and on each product, the average rating must be displayed. On clicking that, all the reviews for that…
RJ_SU
  • 31
  • 9
-1
votes
2 answers

How to deal with Rating system (android + mysql)

I want to use a rate system in my app , well I know how to implement RatingBar but I need to know the way I can calculate rating after each rate For example user 1 give 5 starts but 2 other users gives 3 , 4 starts, so what is the result in this…
Amine Choukri
  • 398
  • 2
  • 12
-1
votes
1 answer

Removing bias in user ratings

I have got a dataset with users ratings on images. I am normalizing the ratings using mean- standard deviation normalization to remove bias in the dataset due to user specific preferences. Is this a correct way to handle bias or is there any other…
-1
votes
1 answer

Methods to find reciprocating votes in rating system

I have an active voting system which essentially comes down to a database table, with columns "votefrom" and "voteto". Basically, I'm trying to work out an alert system that can detect abuse. One such case if finding a way to detect reciprocating…
Steven De Groote
  • 2,187
  • 5
  • 32
  • 52
-1
votes
1 answer

10 stars rating system with JQuery

Here is the fiddle: https://jsfiddle.net/0yvkuL29/ I want to use click instead of hover. I've tried with .on("click"). But it works just to put the .rating_over and I can't remove the class. I want to create the rating system to work with…
-1
votes
3 answers

What is this "weighted" rating algorithm?

I'm working on code where a star rating system was implemented, allowing users to rate between 1 & 5 stars. Instead of displaying an item's actual rating it uses this algorithm: ( rating_votes / ( rating_votes+10 ) ) * ( rating_total/rating_votes )…
Josh Ribakoff
  • 2,948
  • 3
  • 27
  • 26
-1
votes
1 answer

How to add user reviews and ratings scores to my site?

I am building an online store in ASP.NET Web Forms 4.0 and i would like to add a feature to it. I would like to add some user reviews(commentaries) to my products and some ratings scores. Can someone help me on how should i implement these things…
Stefan P.
  • 331
  • 6
  • 23
-1
votes
1 answer

Ajax rate system with php

So, I grabbed this code from here. and I changed it a little to fit my db and display the rate based on my idGames, it's working fine, but now I want to do something like this. How can I display the rates when I enter in the game page and rate that…
John
  • 3
  • 2
-1
votes
1 answer

How to sumbit jquery star rating?

I've just installed and added this plugin to one of my pages: http://www.fyneworks.com/jquery/star-rating/#tab-API The form control works perfect, my radio buttons are now stars. However, I cannot figure out how to get it to submit with the form.…
Steve
  • 121
  • 8
-2
votes
1 answer

Display number of font awesome star icons depends on value in database column

Im sorry, but Im new to this. I have a number of products that I want to display from a database. One of the columns is rating. I want to know how to display the value from that column as font awesome star icons instead of the value itself. Each…
-2
votes
1 answer

Thumbs Down - YouTube style voting system where user can only vote once but can change from like to dislike vice versa

I am making an application where users can post/comment/ and like posts. I would like to implement a thumbs up/down similar to YouTube. I currenlty have two IBActions for like and dislike buttons. My question is, how to deselect the button when the…
1 2 3
17
18