gitextract_47q7nj1_/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ └── config.yml │ ├── SECURITY.md │ ├── dependabot.yml │ └── workflows/ │ ├── dependabot-auto-merge.yml │ ├── run-tests.yml │ └── static-code-analysis.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── TODO.md ├── composer.json ├── examples/ │ ├── article-boston-marathon-analysis.php │ ├── article-downhill-ski-analysis.php │ ├── article-gpx-running-analysis.php │ ├── freq_methods.php │ ├── frequencies.php │ ├── kde.php │ ├── kde_downhill.php │ ├── norm_dist.php │ ├── recipes_binomial_approximation.php │ ├── recipes_classic_probability.php │ ├── recipes_monte_carlo.php │ ├── recipes_naive_bayes.php │ ├── stat.php │ └── stat_methods.php ├── phpstan.neon ├── phpunit.xml.dist ├── rector.php ├── src/ │ ├── ArrUtil.php │ ├── Enums/ │ │ ├── Alternative.php │ │ └── KdeKernel.php │ ├── Exception/ │ │ └── InvalidDataInputException.php │ ├── Freq.php │ ├── Math.php │ ├── NormalDist.php │ ├── Stat.php │ ├── Statistics.php │ ├── StreamingStat.php │ ├── StudentT.php │ └── Utils/ │ ├── Arr.php │ ├── Format.php │ └── Math.php └── tests/ ├── ArrTest.php ├── FormatTest.php ├── FreqTest.php ├── FrequenciesTest.php ├── MathTest.php ├── NormalDistTest.php ├── StatDatasetTest.php ├── StatFromCsvTest.php ├── StatTest.php ├── StatisticTest.php ├── StreamingStatTest.php ├── StudentTTest.php └── data/ └── income.data.csv