Skip to content

Releases: rust-ndarray/ndarray-stats

0.6.0

24 Aug 19:06
Compare
Choose a tag to compare
  • Breaking changes
    • Minimum supported Rust version: 1.64.0
    • Updated to ndarray:v0.16.0
    • Updated to approx:v0.5.0
  • Updated to ndarray-rand:v0.15.0
  • Updated to indexmap:v2.4
  • Updated to itertools:v0.13

Contributors: @bluss

0.2.0 release (#36)

13 Apr 16:25
6722934
Compare
Choose a tag to compare
  • New functionality:
    • Summary statistics:
      • Harmonic mean
      • Geometric mean
      • Central moments
      • Kurtosis
      • Skewness
    • Information theory:
      • Entropy
      • Cross-entropy
      • Kullback-Leibler divergence
    • Quantiles and order statistics:
      • argmin / argmin_skipnan
      • argmax / argmax_skipnan
      • Optimized bulk quantile computation (quantiles_mut, quantiles_axis_mut)
  • Fixes:
    • Reduced occurrences of overflow for interpolate::midpoint
  • Improvements / breaking changes:
    • Redesigned error handling across the whole crate, standardising on Result
    • All ndarray-stats' extension traits are now impossible to implement by
      users of the library (see [#34])

Contributors: @jturner314, @LukeMathWalker, @phungleson, @munckymagik