rraspo/descriptive-statistics

Laravel package to perform some very very basic statistical operations

Installs: 45

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/rraspo/descriptive-statistics

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

This package is not auto-updated.

Last update: 2025-10-26 01:53:56 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);
      ...
  }
}