- Prohibit the use of both
nbins
andedges
kwargs simultaneously in thehistogram
method. - Support
skip_na
kwarg insum
and related methods. - Support Ruby 3.4+.
- Fix the bug of histogram with bin range that is smaller than value range
- Add edges parameter in histogram
- Rename parameter in histogram to fix typo:
weight
toweights
- Add weighted histogram support
- Add
find_min
,find_max
,argmin
,argmax
methods - Fix
nbin=:auto
case inhistogram
method
- Ractor-safe version
- Support Ruby 3.0
- Fix a bug of
histogram
(#9)
- Add
value_counts
method in Array, Hash, and Enumerable - Add
median
method in Array - Add
percentile
method in Array - Add
histogram
method in Array
- Add
mean_variance
method in Array class and Enumerable module - Add optimized implementation of
mean_variance
method for a Hash - Add the following methods, implemented by using
mean_variance
, in Array class and Enumerable modulemean
variance
stddev
mean_stddev
- Add
sum
method in Array class and Enumerable module when Ruby < 2.4, that is almost same as introduced in Ruby 2.4 - Add optimized implementation of
sum
method for a Range with integer ends and a Hash, that is almost same as introduced in Ruby 2.4
- This version was yanked due to documentation issue