common-voice / cv-dataset

Metadata and versioning details for the Common Voice dataset
https://commonvoice.mozilla.org/datasets
Mozilla Public License 2.0
141 stars 15 forks source link

Change request: Please order age ranges chronologically #35

Open KathyReid opened 1 month ago

KathyReid commented 1 month ago

Please order age ranges in JSON chronologically

Description of current state

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".

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:

"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
        },
HarikalarKutusu commented 1 month ago

And please give more significant digits, as they usually don't add up to 100%...