1. Go to this page and download the library: Download oefenweb/statistics library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
oefenweb / statistics example snippets
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