评级系统如何运作?
我想使用 codeigniter 和 MySQL 为我的网站制作评级系统。谁能告诉我评级系统是如何运作的?评级系统的计算方式是什么?
i want to make rating system for my website using codeigniter and MySQL. Can any one tell me how rating system works? what are the calculations in rating system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是星级,那么您需要计算票数和评级。一个特殊情况是,当你获得高票或很少票时,问题是如何对选票进行排序。解决方案是编写一种算法,可以发现错误或非法投票并计算有意义的排名。以下是求解该方程的 Wilson 区间的实现:星级,实现 Wilson 得分区间。
If you mean a star rating then you need to count the votes and the rating. A special case is when you get high votes or very few votes then the problem is how do you sort the votes. A solution would be to write an algorithm that can find wrong or illegal votes and compute a meaningful ranking. Here is an implementation of the Wilson intervall that solve this equation: Star rating, implementing Wilson score interval.