Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

feature(geomean): add geomean function #6223

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 15, 2024
Prev Previous commit
Next Next commit
Update src/plots/plots.js
  • Loading branch information
acxz committed Jul 8, 2022
commit 794aba9c326cd3a60e633b9ede595682cf161a22
2 changes: 1 addition & 1 deletion 2 src/plots/plots.js
Original file line number Diff line number Diff line change
Expand Up @@ -3127,7 +3127,7 @@ function sortAxisCategoriesByValue(axList, gd) {
'sum': function(values) {return Lib.aggNums(function(a, b) { return a + b;}, null, values);},
'total': function(values) {return Lib.aggNums(function(a, b) { return a + b;}, null, values);},
'mean': function(values) {return Lib.mean(values);},
'geomean': function(values) {return Lib.geoMean(values)},
'geomean': function(values) {return Lib.geoMean(values);},
'median': function(values) {return Lib.median(values);}
};

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.