We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the age ranges are presented as:
"age": { "": 0.22, "twenties": 0.44, "thirties": 0, "teens": 0.01, "fourties": 0.11, "fifties": 0.22, "sixties": 0, "seventies": 0, "eighties": 0, "nineties": 0 },
The category of "teens" is out of chronological order, and should sit before "twenties".
"teens"
"twenties"
This ordering means that if we are visualising the data, we have to do additional manipulation to make the order chronological.
Please order as per:
"age": { "": 0.22, "teens": 0.01, "twenties": 0.44, "thirties": 0, "fourties": 0.11, "fifties": 0.22, "sixties": 0, "seventies": 0, "eighties": 0, "nineties": 0 },
The text was updated successfully, but these errors were encountered:
And please give more significant digits, as they usually don't add up to 100%...
Sorry, something went wrong.
No branches or pull requests
Please order age ranges in JSON chronologically
Description of current state
Currently, the age ranges are presented as:
The category of
"teens"
is out of chronological order, and should sit before"twenties"
.This ordering means that if we are visualising the data, we have to do additional manipulation to make the order chronological.
Desired state
Please order as per:
The text was updated successfully, but these errors were encountered: