mazedlx/median

Super simple median calculation

1.2 2017-04-30 14:44 UTC

This package is auto-updated.

Last update: 2024-04-16 02:09:55 UTC


README

Build Status

median

Super simple PHP library for getting the median of array values (can also calc the average of the array's elements).

Installation and Usage

composer install mazedlx/median

$arrayOfValues = [1, 2, 5, 1000, 7]
$m = new Median($arrayOfValues);

$avg = $m->average();
// $avg == 203

$median = $m->median();
// $median == 5