Dear All,
I find ring charts a useful alternative to pie charts (essentially vacating the central space for showing some indicator value, name, or definition), but recently I've noticed that they are being used for comparisons of various subgroups, such as e.g. in here:

Now is it just me, or do you also find it rather counterintuitive to visually present such comparisons??
Consider for example this chart:

Here the larger value of 83 is visually dominated by a lower value of 72.
My approach would be to use a bar chart for comparing such indicators:

But I wonder:
- why the ring-chart comparison is being used for such purposes?
- Has there been some reputable advice to use it or not to use it in such cases?
- do you find it being more informative or confusing?
Thank you, Sergiy Radyakin
I find ring charts a useful alternative to pie charts (essentially vacating the central space for showing some indicator value, name, or definition), but recently I've noticed that they are being used for comparisons of various subgroups, such as e.g. in here:
Now is it just me, or do you also find it rather counterintuitive to visually present such comparisons??
Consider for example this chart:
Here the larger value of 83 is visually dominated by a lower value of 72.
My approach would be to use a bar chart for comparing such indicators:
Code:
clear all input str5 g int val "Girls" 83 "Boys" 72 end graph hbar (asis) val, over(g) /// title("Early Childhood Development Index, SDG 4.2.1")
But I wonder:
- why the ring-chart comparison is being used for such purposes?
- Has there been some reputable advice to use it or not to use it in such cases?
- do you find it being more informative or confusing?
Thank you, Sergiy Radyakin
Comment