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

convert N column to numeric to ensure correct sort behavior #37

Closed
elray1 opened this issue Jan 31, 2025 · 0 comments
Closed

convert N column to numeric to ensure correct sort behavior #37

elray1 opened this issue Jan 31, 2025 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@elray1
Copy link
Contributor

elray1 commented Jan 31, 2025

Currently, the data type of the N column is string, which means its values sort incorrectly, see screenshot:

Image

We should change this data type to integer. This can be done somewhere in this block:

predevals/src/predevals.js

Lines 460 to 483 in f268127

.then((data) => {
// convert score columns to floats
// TODO: extract to helper function for clarity
for (const col_name of data.columns) {
if (!['model_id', 'n', this.state.selected_disaggregate_by].includes(col_name)) {
// This is a score column, so convert values in all rows to float
for (let i = 0; i < data.length; i++) {
data[i][col_name] = parseFloat(data[i][col_name]);
// If it's an interval coverage column, multiply by 100
if (interval_coverage_regex.test(col_name)) {
data[i][col_name] *= 100;
}
}
}
}
// update state
if (isFetchScoresTable) {
this.state.scores_table = data;
} else{
this.state.scores_plot = data;
}
})

See also #26 -- it could make sense to tackle these two issues together.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Status: Done
Development

No branches or pull requests

2 participants