Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mstorm/node-dcg

Discounted cumulative gain (DCG) calculator.
https://github.com/mstorm/node-dcg

Last synced: 4 months ago
JSON representation

Discounted cumulative gain (DCG) calculator.

Awesome Lists containing this project

README

        

# node-dcg

[Discounted cumulative gain (DCG)](https://en.wikipedia.org/wiki/Discounted_cumulative_gain) calculator.

## Installation

npm:

```bash
$ npm install node-dcg
```

## Usage

```javascript
var dcg = require('node-dcg');

var value = dcg.ndcg([3, 0, 1, 2]);
console.log(value);
```