• Reading time ~ 1 min
  • 20.09.2022

Hi-Folks/statistics is a PHP package that provides functions for calculating mathematical statistics of numeric data. This package includes functions that can calculate things like mean, median, quartile calculations, and specialized calculations like geometric mean:

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
)
*/

The above is just a sample of the various functions provided in this package. The readme has good documentation and examples of using all of them. You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Comments

No comments yet
Yurij Finiv

Yurij Finiv

Full stack

ABOUT

Professional Fullstack Developer with extensive experience in website and desktop application development. Proficient in a wide range of tools and technologies, including Bootstrap, Tailwind, HTML5, CSS3, PUG, JavaScript, Alpine.js, jQuery, PHP, MODX, and Node.js. Skilled in website development using Symfony, MODX, and Laravel. Experience: Contributed to the development and translation of MODX3 i...

About author CrazyBoy49z
WORK EXPERIENCE
Contact
Ukraine, Lutsk
+380979856297