Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.17 KB

README.md

File metadata and controls

19 lines (13 loc) · 1.17 KB

OBB Ranking Build Status Dependency Status

Skill ranking for Orion's Belt, based on Glicko-2 Ranting System. The implementation was borrowed from goochjs/glicko2. This project creates a clojure wrapper around glicko2's java code.

There's a REST/JSON interface for this logic at obb-rules-api.

Instalation

Clojars Project

Usage

(obb-ranking.core/calculate {:rating 1500 :rd 50 :volatility 0.06}
                            {:rating 1200 :rd 350 :volatility 0.06})
;=> [{:rating 1500.20, :rd 51.05, :volatility 0.05}
;    {:rating 497.67, :rd 347.83, :volatility 0.05}]