Skip to content
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

Refactor code for sorting scores into a helper function #27

Open
elray1 opened this issue Jan 14, 2025 · 0 comments
Open

Refactor code for sorting scores into a helper function #27

elray1 opened this issue Jan 14, 2025 · 0 comments

Comments

@elray1
Copy link
Contributor

elray1 commented Jan 14, 2025

The code in this block is making some decisions that seem to work but may not be optimal, and is not tested. Additionally, the sorting functionality may be useful more generally, so would be helpful to have it pulled into its own function.

predevals/src/predevals.js

Lines 505 to 521 in f268127

// sort scores
// TODO: refactor to a function for sorting scores, shared with plot code
// use of d3.ascending() and d3.descending() is verbose,
// but it works reliably for all data types
// (have not thoroughly explored alternatives)
const sort_models_by = this.state.sort_models_by;
if (this.state.sort_models_direction > 0) {
this.state.scores_table.sort((a, b) => {
return d3.ascending(toLowerCaseIfString(a[sort_models_by]),
toLowerCaseIfString(b[sort_models_by]));
});
} else {
this.state.scores_table.sort((a, b) => {
return d3.descending(toLowerCaseIfString(a[sort_models_by]),
toLowerCaseIfString(b[sort_models_by]));
});
}

Other issues where sorting would be helpful: #3, #11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Todo
Development

No branches or pull requests

1 participant