Metadata-Version: 1.1
Name: wquantiles
Version: 0.3
Summary: Weighted quantiles, including weighted median, based on numpy
Home-page: http://github.com/nudomarinero/wquantiles/
Author: Jose Sabater
Author-email: jsm@iaa.es
License: MIT License
Description: wquantiles
        ==========
        
        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)_. 
        
        
        
Platform: any
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
