Skip to content

Releases: adknudson/RunningStatistics

release-3.1.0

22 Sep 22:35

Choose a tag to compare

  • Added overloads for CountMap.MinKey and CountMap.MaxKey that accept IComparer objects
  • Added a Quantile method for CountMap

What's Changed

  • Refactored the MinKey and MaxKey methods to accept an IComparer by @adknudson in #3
  • Added quantile method for CountMap by @adknudson in #4

New Contributors

Full Changelog: release-3.0.0...release-3.1.0

release-3.0.0

30 Jul 17:59

Choose a tag to compare

  • Split the interface into 3 parts to have an observation-agnostic interface
    • This allows for collections of running statistics that can have mixed observation types and mixed concrete types
  • Removed support for .NET 6.0 since it has reached EOL
  • Bug fixes for Extrema<T>
  • Improved test coverage

Full Changelog: release-2.0.1...release-3.0.0

release-2.0.1

25 Mar 21:51

Choose a tag to compare

release-2.0.0

04 Jan 00:25

Choose a tag to compare

Re-introduces the IRunningStatistic interface and overhauls the RunningStatisticBase class (Formerly AbstractRunningStatistic) to handle more boilerplate. Greatly enhanced the unit tests and added more examples. Statistics also guard against illegal values to ensure as little unexpected behavior as possible.

Full Changelog: release-1.1.1...release-2.0.0

release-1.1.1

06 Jun 01:11

Choose a tag to compare

Fixed bug with Mean where merging an empty Mean propagated NaNs.

release-1.1.0

27 Apr 23:45

Choose a tag to compare

Added the Beta distribution running statistic, which keeps track of the number of successes and the number of failures.

release-1.0.0

12 Apr 22:42

Choose a tag to compare

Initial 1.0.0 release! The API will be considered locked down until a v2 release.