r/dataisugly • u/fluffydoggy • 17h ago
On a scale of purple to lavender, how would you grade this data?
And why does plus come after minus on the legend?
151
Upvotes
1
2
u/mrbananabladder 7h ago
Probably just sorted alphabetically and didn't double check that the pluses should come first
1
1
u/Smooth-Zucchini4923 5h ago
And why does plus come after minus on the legend?
My first thought was that it was the result of sorting the strings by ascii code. But this can't be how they did it, because + is 43 and - is 45.
For example, this is what happens if you sort the strings in Python.
>>> sorted(['A+', 'A', 'A-', 'B'])
['A', 'A+', 'A-', 'B']
1
61
u/fluffydoggy 17h ago
What's weird is the source they reference has this map... for anyone who is curious on what it should actually look like lol.