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: 2025-02-01 22:02:59 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);
      ...
  }
}