average-rating

Calculate average score and rating based on Wilson Score Equation

Github星跟蹤圖

average-rating

Calculate average and scoring based on Wilson Score Equation

NPM
Build Status
Coverage Status

Google app on Google Play

Usage

const {
  score,
  rate,
  average
} = require('average-rating');


// get Winson score for a pair of (Positive, Negative) voting
score(0, 1000); // --> 0
score(1000, 0); // --> 0.96
score(1000, 1000); // --> 0.48

// from 1 to 5 stars
const rating = [134055, 57472, 143135, 365957, 1448459];
rate(rating); // --> 0.84

// calculate average
average(rating); // --> 4.4

API reference

.score(Number positive, Number negative)

Return a value from 0 to 1.

Used for the systems of Positive/Negative rating, such as the videos on YouTube, the answers on StackOverflow, etc. In which, each of item can be voted as good or bad, like or dislike or something like that.

.rate(Array ratings)

Return a value from 0 to 1.

Used for the systems of 5 rating levels, such as the applications on Google Play store, the books on Amazon, etc. In which, each of item can be voted as one of value in the range of 1 to 5 stars.

Update
  • Since v1.1.5, this rate method accepts custom range of ratings. 5 or more values are OK.
const input = [3, 4, 2, 6, 12, 46, 134, 213, 116, 91, 45, 15, 58, 96, 1654]; // 15 values
rate(input); // => 0.85

rate([3, 4, 2, 6, 12, 46, 134, 213, 116, 91]); // => 0.74

.average(Array ratings)

Return a value from 0 to 5.

Calculate normal average value for the systems of 5 rating levels.

Test

git clone https://github.com/ndaidong/average-rating.git
cd average-rating
npm install
npm test

License

The MIT License (MIT)

主要指標

概覽
名稱與所有者ndaidong/average-rating
主編程語言TypeScript
編程語言JavaScript (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2015-11-05 14:32:33
推送於2024-06-23 10:29:30
最后一次提交
發布數10
最新版本名稱v3.0.1 (發布於 )
第一版名稱v0.2.31 (發布於 2015-12-24 20:54:14)
用户参与
星數33
關注者數2
派生數7
提交數92
已啟用問題?
問題數2
打開的問題數0
拉請求數23
打開的拉請求數0
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?