oefenweb/statistics

PHP 统计库

v3.0.1 2022-03-23 10:43 UTC

This package is auto-updated.

Last update: 2024-08-23 15:39:39 UTC


README

Build Status PHP 7 ready codecov Packagist downloads Code Climate Scrutinizer Code Quality

PHP 统计库。

需求

  • PHP 7.2.0 或更高版本。

使用方法

总和

use Oefenweb\Statistics\Statistics;

Statistics::sum([1, 2, 3]); // 6

最小值

use Oefenweb\Statistics\Statistics;

Statistics::min([1, 2, 3]); // 1

最大值

use Oefenweb\Statistics\Statistics;

Statistics::max([1, 2, 3]); // 3

平均值

use Oefenweb\Statistics\Statistics;

Statistics::mean([1, 2, 3]); // 2

频率

use Oefenweb\Statistics\Statistics;

Statistics::frequency([1, 2, 3, 3, 3]); // [1 => 1, 2 => 1, 3 => 3]

众数

use Oefenweb\Statistics\Statistics;

Statistics::mode([1, 2, 2, 3]); // 2

方差(样本和总体)

use Oefenweb\Statistics\Statistics;

Statistics::variance([1, 2, 3]); // 1
Statistics::variance([1, 2, 3], false); // 0.66666666666667

标准差(样本和总体)

use Oefenweb\Statistics\Statistics;

Statistics::standardDeviation([1, 2, 3]); // 1.0
Statistics::standardDeviation([1, 2, 3], false); // 0.81649658092773

范围

use Oefenweb\Statistics\Statistics;

Statistics::range([4, 6, 10, 15, 18]); // 14