用於計算數學統計的 PHP 包

playmaker發表於2022-02-10

Hi-Folks/statistics 是一個 PHP 包,它提供了用於計算數值資料的數學統計的函式。該軟體包包括可以計算平均值、中位數、四分位數計算和幾何平均值等特殊計算的函式:

安裝

composer require hi-folks/statistics

示例

use HiFolks\Statistics\Stat;

Stat::mean([1, 2, 3, 4, 4]); // 2.8
Stat::mean([-1.0, 2.5, 3.25, 5.75]); // 2.625

// The central tendency or typical value of the data
// using the product of the values.
Stat::geometricMean([54, 24, 36], 1); // 36.0

Stat::median([1, 3, 5]); // 3
Stat::median([1, 3, 5, 7]); // 4

Stat::firstQuartile([
    98,90,70,18,92,92,55,83,45,95,88
]); // 55.0

Stat::thirdQuartile([
    98,90,70,18,92,92,55,83,45,95,88
]); // 92.0

$fruits = [
    '?', '?', '?', '?','?','?','?','?','?'
];
$freqTable = Freq::frequencies($fruits);
print_r($freqTable);

/*
Array
(
    [?] => 3
    [?] => 5
    [?] => 1
)
*/

原文連結:laravel-news.com/php-statistics
GitHub :GitHub 原始碼

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章