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
Is it possible to include the geometric mean as a measure for benchmark runs? Similar to how median and mean are simple reexports from Statistics.jl it should be possible to reexport the geometric mean geomean from StatsBase.jl. Is this a feature worth considering for you?
Alternatively, you can omit the additional dependency StatsBase and define the geometric mean in-package since it is literally one line using the form geomean(a) = exp(mean(log, a)) as it is implemented in StatsBase, see here.
The text was updated successfully, but these errors were encountered:
I think this is great! I would be happy to review a PR which adds this functionality as an Extension package when StatsBase is loaded, for geomean and harmonic mean
Is it possible to include the geometric mean as a measure for benchmark runs? Similar to how
median
andmean
are simple reexports fromStatistics.jl
it should be possible to reexport the geometric meangeomean
fromStatsBase.jl
. Is this a feature worth considering for you?Alternatively, you can omit the additional dependency
StatsBase
and define the geometric mean in-package since it is literally one line using the formgeomean(a) = exp(mean(log, a))
as it is implemented inStatsBase
, see here.The text was updated successfully, but these errors were encountered: