Skip to content

Releases: JuliaStats/Statistics.jl

v1.11.1

19 Dec 10:36
68869af
Compare
Choose a tag to compare

Statistics v1.11.1

Diff since v1.11.0

Merged pull requests:

Closed issues:

  • The quantile function can return incorrect results for integer arrays (Int8, Int16, Int32) (#119)

Version 1.11.0

06 Dec 21:30
f54010d
Compare
Choose a tag to compare

Ready for upgradeable stdlib

Version 1.9.0

25 Aug 09:46
20fbe57
Compare
Choose a tag to compare

Version 1.8.0

26 Aug 15:51
61a021b
Compare
Choose a tag to compare
Fix missing `stdm` method with dims argument (#81)

`stdm` is missing a "dims" argument which is documented but has not actually been added.

Version 1.7.0

04 Jan 11:15
5256d57
Compare
Choose a tag to compare
Fix `cov` and `cor` in the presence of missing values (#94)

`dot` currently throws when the input contains `missing`,
which is breaking as they were previously accepted.
Use `adjoint(y) * x` instead of `dot(y, x)`, as the former falls back
to the latter for arrays of `Number`s but to
`sum(uu*vv for (uu, vv) in zip(u, v))` for other types.

Version 1.4.0

27 May 12:36
a2203d3
Compare
Choose a tag to compare

Version included in Julia 1.4.

First version after extracting Statistics from Julia repository

22 Oct 17:02
da6057b
Compare
Choose a tag to compare