nudomarinero / wquantiles

weighted quantiles with Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wquantiles

Build Status DOI Pypi

Weighted quantiles with Python, including weighted median. This library is based on numpy, which is the only dependence.

The main methods are quantile and median. The input of quantile is a numpy array (data), a numpy array of weights of one dimension and the value of the quantile (between 0 and 1) to compute. The weighting is applied along the last axis. The method median is an alias to quantile(data, weights, 0.5).

About

weighted quantiles with Python

License:MIT License


Languages

Language:Python 100.0%