You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some functions like mean are implemented in ndarray (here) and ndarray-stats (here). When using SummaryStatisticsExt, the function mean exists two times, which is not a problem but confusing as one implementation returns Option and the other Result and it firstly seems to mismatch with the documentation.
Is it intended to have some implementations duplicated along the two crates on the long run? If so, ndarray-stats could be more specific by renaming mean to arithmetic_mean (and its axis/weighted variants) being consistent with geometric_mean and harmonic_mean. Feel free to close the issue if you prefer a simple mean.
The text was updated successfully, but these errors were encountered:
Some functions like
mean
are implemented inndarray
(here) andndarray-stats
(here). When usingSummaryStatisticsExt
, the functionmean
exists two times, which is not a problem but confusing as one implementation returnsOption
and the otherResult
and it firstly seems to mismatch with the documentation.Is it intended to have some implementations duplicated along the two crates on the long run? If so,
ndarray-stats
could be more specific by renamingmean
toarithmetic_mean
(and its axis/weighted variants) being consistent withgeometric_mean
andharmonic_mean
. Feel free to close the issue if you prefer a simplemean
.The text was updated successfully, but these errors were encountered: