I give up, I am embracing pie charts

[This article was first published on Simply Statistics » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Most statisticians know that pie charts are a terrible way to plot percentages. You can find explanations here, here, and here as well as the R help file for the pie function which states:

Pie charts are a very bad way of displaying information. The eye is good at judging linear measures and bad at judging relative areas. A bar chart or dot chart is a preferable way of displaying this type of data.

pacman

I have only used the pie R function once and it was to make this plot (R code below):

So why are they ubiquitous? The best explanation I’ve heard is that they are easy to make in Microsoft Excel. Regardless, after years of training, lay people are probably better at interpreting pie charts than any other graph. So I’m surrendering and embracing the pie chart. Jeff’s recent post shows we have bigger fish to fry.

N=10 for(i in 0:(N-1)){ x=cos(2*pi/N*i);y=x+1;z=(y-2)*22.5 bitmap(sprintf("Rplot%02d.png",i)) pie(c(y,8-y),col=c("white","yellow"),init.angle=135-z,border=FALSE,labels=NA) dev.off() } system("convert Rplot*.png pacman.gif") ##system("rm *.png") edited to save caffo's pngs (see comments) system("rm Rplot*.png")

To leave a comment for the author, please follow the link and comment on their blog: Simply Statistics » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)