rraspo/descriptive-statistics

Laravel package to perform some very very basic statistical operations

v0.1 2016-11-01 01:31 UTC

This package is not auto-updated.

Last update: 2024-09-28 20:14:34 UTC


README

Very very basic statistical operations with PHP

Installation

composer require rraspo/descriptive-statistics

Usage

use EstDesc\EstDesc;
class SomeClass {
  function someFunction {
      ...
      $median = EstDesc::median($data);
      ...
  }
}