Skip to content

Releases: brenhinkeller/NaNStatistics.jl

v0.5.5

09 Nov 20:54
5fb3bf2
Compare
Choose a tag to compare

NaNStatistics v0.5.5

Diff since v0.5.4

  • Update compat bounds

Merged pull requests:

  • CompatHelper: bump compat for Static to 0.4, (keep existing compat) (#12) (@github-actions[bot])

v0.5.4

01 Sep 00:24
20de3f0
Compare
Choose a tag to compare

NaNStatistics v0.5.4

Diff since v0.5.3

Merged pull requests:

  • CompatHelper: bump compat for "Static" to "0.3" (#10) (@github-actions[bot])
  • CompatHelper: bump compat for VectorizationBase to 0.21, (keep existing compat) (#11) (@github-actions[bot])

v0.5.3

21 Jun 00:04
Compare
Choose a tag to compare

NaNStatistics v0.5.3

Diff since v0.5.2

v0.5.2

20 Jun 03:28
Compare
Choose a tag to compare

NaNStatistics v0.5.2

Diff since v0.5.1

  • Remove recursive fallback methods for high-dimensional nanmean and nanvar; just use direct loop generation
  • Add direct loop generation methods for nansum
  • Additional test coverage for small numeric types

v0.5.1

20 Jun 00:18
Compare
Choose a tag to compare

NaNStatistics v0.5.1

Diff since v0.5.0

  • Fix some issues with small types (Bool, Int8, etc.)

v0.5.0

14 Jun 15:48
Compare
Choose a tag to compare

NaNStatistics v0.5.0

Diff since v0.4.0

  • Add nancov and nancor
  • Add direct loop-generation implementation for nanmean, nanvar, and nanstd

v0.4.0

05 Jun 22:37
Compare
Choose a tag to compare

NaNStatistics v0.4.0

Diff since v0.3.1

  • nanbinwmean -> nanbinmean
  • nanbinwmean! -> nanbinmean!
  • The weighted versions are now distinguished by number of arguments (as they already are for plain nanmean), allowing dispatch to choose which one applies. This is useful when writing higher-order functions that are given the function handle of a binning function, as in the resampling functions in StatGeochem.jl

v0.3.1

31 May 05:15
Compare
Choose a tag to compare

NaNStatistics v0.3.1

Diff since v0.3.0

  • Add nanstandardize

v0.3.0

30 May 18:08
Compare
Choose a tag to compare

NaNStatistics v0.3.0

Diff since v0.2.0

  • Enable dim option (as dims, but drop reduced dimensions)
  • Various bugfixes

v0.2.0

29 May 23:01
Compare
Choose a tag to compare

NaNStatistics v0.2.0

Diff since v0.1.1

  • Favor interface that uses range of xedges to define bin edges rather than xmin, xmax, nbins
  • Check destination bounds before running in-place binning and histogram methods, warn if applicable
  • more efficient binning method for histcounts
  • 2D methods for histograms and binning functions