1.0.5 • Published 3 years ago

shapley v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A TypeScript/JavaScript library for calculating Shapley Value

Deno

import { shapley, RealNumber } from "https://deno.land/x/shapley@1.0.5/mod.ts";

Node.js

npm install shapley

Usage

const shapleyValueForP = shapley(N, v)(p)
// N = set of players
// v = value function
// p = current player

For examples, please check examples folder.

Acknowledgement

This library is mostly based on the previous work in Taxi Sharing Fare App repository.