Skip to content

Releases: Hi-Folks/statistics

v1.0.1

21 Nov 18:20
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.0.1

v1.0.0

26 Dec 16:49
Compare
Choose a tag to compare

What's Changed

  • Fixed median() to handle unsorted data. Minor text changes for consistency by @keatis in #66
  • Supporting PHP 8.2 and PHP 8.3 (updating also GitHub Actions workflows)
  • Dropping the support for PHP 8.0
  • Adding RectorPHP and updating to 0.18.5 by @sukuasoft in #38
  • Update to PestPHP v2 by @AmooAti in #36
  • Replacing php-cs-fixer with pint and running pint by @sukuasoft in #39
  • including Pint in all-check script by @roberto-butti in #40
  • uses: actions/checkout@v4 by @roberto-butti in #41
  • Update phpstan.neon - level 8 by @roberto-butti in #56
  • Update Rector configuration UP_TO_PHP_81 by @roberto-butti in #57
  • refactoring with Rector by @roberto-butti in #58
  • Update on README, Contribution guidelines, Code of Conduct, Security policies

New Contributors

Full Changelog: v0.2.1...v1.0.0

Linear regression

22 Feb 21:13
Compare
Choose a tag to compare
  • Linear regression

Raise Exception for wrong input

21 Feb 19:59
Compare
Choose a tag to compare

Correlation

19 Feb 12:25
Compare
Choose a tag to compare

Covariance

17 Feb 22:56
cb8013f
Compare
Choose a tag to compare
  • New method for calculating covariance: Stat::covariance()

Frequency Table

05 Feb 14:53
Compare
Choose a tag to compare
  • frequencyTable()
  • frequencyTableBySize()
  • code refactoring and documenting some functions by Artem Trokhymchuk @trokhymchuk thanks for the PR #2
  • add tests for Math class

Quantiles

30 Jan 18:10
Compare
Choose a tag to compare
  • quantiles()
  • firstQuartile()
  • thirdQuartile()

Geometric and Harmonic Mean

29 Jan 13:18
Compare
Choose a tag to compare
  • geometricMean(): geometric mean
  • harmonicMean(): harmonic mean and weighted harmonic mean

Standard Deviation and Variance

28 Jan 20:29
Compare
Choose a tag to compare
  • pstdev(): Population standard deviation
  • stdev(): Sample standard deviation
  • pvariance(): variance for a population
  • variance(): variance for a sample