rraspo/descriptive-statistics

Laravel package to perform some very very basic statistical operations

Maintainers

Package info

github.com/rraspo/descriptive-statistics

pkg:composer/rraspo/descriptive-statistics

Statistics

Installs: 45

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-03-15 03:34:18 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);
      ...
  }
}