Open KathyReid opened 1 month ago
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 },
And please give more significant digits, as they usually don't add up to 100%...
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: