rraspo / descriptive-statistics by rraspo

Laravel package to perform some very very basic statistical operations
44
0
3
Package Data
Maintainer Username: rraspo
Maintainer Contact: juan.porras@edu.uag.mx (Juan A. Porras)
Package Create Date: 2016-11-01
Package Last Update: 2016-12-05
Language: PHP
License: MIT
Last Refreshed: 2025-02-12 15:15:36
Package Statistics
Total Downloads: 44
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Descriptive statistics

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);
      ...
  }
}