2017 © Pedro Peláez
 

library aggregation

Aggregation functions

image

webd/aggregation

Aggregation functions

  • Thursday, August 2, 2018
  • by tdebatty
  • Repository
  • 2 Watchers
  • 0 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

php-aggregation-operators

PHP implementation of aggregation operators, (*1)

Currently available: - Weigted Ordered Weighted Aggregation (WOWA), (*2)

To come: - Ordered Weigted Average (OWA) - Choquet's integral, (*3)

Installation

composer require webd/aggregation

Usage

require "vendor/autoload.php";

use Aggregation\WOWA;

$w = array(0.1, 0.2, 0.3, 0.4, 0.0);
$p = array(0.1, 0.2, 0.3, 0.4, 0.0);
$values = array(0.4, 0.2, 0.3, 0.1, 0.0);
echo WOWA::wowa($w, $p, $values);

The Versions

02/08 2018

dev-master

9999999-dev

Aggregation functions

  Sources   Download

MIT

The Development Requires

02/08 2018

0.0.2

0.0.2.0

Aggregation functions

  Sources   Download

MIT

The Development Requires

02/08 2018

0.0.1

0.0.1.0

Aggregation functions

  Sources   Download

MIT

The Requires