Popularity
3.6
Declining
Activity
0.0
Stable
4
3
1
Monthly Downloads: 0
Programming language: Haskell
License: GNU General Public License v3.0 only
Tags:
Math
glicko alternatives and similar packages
Based on the "Math" category.
Alternatively, view glicko alternatives based on common mentions on social networks and blogs.
-
vector
An efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework . -
statistics
A fast, high quality library for computing with statistics in Haskell. -
HerbiePlugin
GHC plugin that improves Haskell code's numerical stability -
hgeometry
HGeometry is a library for computing with geometric objects in Haskell. It defines basic geometric types and primitives, and it implements some geometric data structures and algorithms. The main two focusses are: (1) Strong type safety, and (2) implementations of geometric algorithms and data structures that have good asymptotic running time guarantees. -
computational-algebra
General-Purpose Computer Algebra System as an EDSL in Haskell -
dimensional
Dimensional library variant built on Data Kinds, Closed Type Families, TypeNats (GHC 7.8+). -
mwc-random
A very fast Haskell library for generating high quality pseudo-random numbers. -
numhask
A haskell numeric prelude, providing a clean structure for numbers and operations that combine them. -
poly
Fast polynomial arithmetic in Haskell (dense and sparse, univariate and multivariate, usual and Laurent) -
cf
"Exact" real arithmetic for Haskell using continued fractions (Not formally proven correct) -
optimization
Some numerical optimization methods implemented in Haskell -
equational-reasoning
Agda-style equational reasoning in Haskell -
safe-decimal
Safe and very efficient arithmetic operations on fixed decimal point numbers -
monoid-subclasses
Subclasses of Monoid with a solid theoretical foundation and practical purposes -
eigen
Haskel binding for Eigen library. Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. -
modular-arithmetic
A useful type for working with integers modulo some constant.
Learn any GitHub repo in 59 seconds
Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
Promo
getonboard.dev
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of glicko or a related project?
README
Glicko
Haskell implementation of the Glicko-2 rating algorithm by Professor Mark E. Glickman.
Building
Easiest is using stack.
$ git clone https://github.com/Prillan/haskell-glicko.git
$ cd haskell-glicko
$ stack setup
$ stack build
Examples
The test case from the Glicko-2 paper is included in test/Paper.hs
.
$ stack ghci
*Main> :l test/Paper.hs
*Paper> :m + Data.Default
*Paper Data.Default> mapM_ print $ compute players matches def
Player {playerId = 1
, playerRating = 1464.0506705393013
, playerDev = 151.51652412385727
, playerVol = 5.9995984286488495e-2
, playerInactivity = 0
, playerAge = 1}
Player {playerId = 2
, playerRating = 1398.1435582337338
, playerDev = 31.67021528115062
, playerVol = 5.999912372888531e-2
, playerInactivity = 0
, playerAge = 1}
Player {playerId = 3
, playerRating = 1570.394740240854
, playerDev = 97.70916852200307
, playerVol = 5.999941947199381e-2
, playerInactivity = 0
, playerAge = 1}
Player {playerId = 4
, playerRating = 1784.4217901320874
, playerDev = 251.56556453224735
, playerVol = 5.9999011763670944e-2
, playerInactivity = 0
, playerAge = 1}