

Excel has a variety of graphs and charts that can be used to represent data in different ways. A Graph in Excel is a design tool that helps us visualize data.

If you have many values to display, you can also consider a lollipop plot that is a bit more elegant in my opinion.Microsoft Excel is a very useful data management tool used widely by almost every organization today to analyze and interpret data. The barplot is the best alternative to pie plots. And often made even worseĮven if pie charts are bad by definition, it is still possible to make them even worse by adding other bad features:

Ggplot(data, aes( x=name, y=value, fill=name)) + geom_bar( stat = "identity") + scale_fill_viridis( discrete = TRUE, direction= - 1) + scale_color_manual( values= c( "black", "white")) + theme_ipsum() + theme(Īs you can see on this barplot, there is a heavy difference between the three pie plots with a hidden pattern that you definitely don’t want to miss when you tell your story.

Also, try to figure out what is the evolution of the value among groups. Once more, try to understand which group has the highest value in these 3 graphics. If you’re still not convinced, let’s try to compare several pie plots. Ggplot(data, aes( x= "name", y=value, fill=name)) + geom_bar( width = 1, stat = "identity") + coord_polar( "y", start= 0, direction = - 1) + scale_fill_viridis( discrete = TRUE, direction= - 1) + geom_text( aes( y = vec, label = rev(name), size= 4, color= c( "white", rep( "black", 4)))) + scale_color_manual( values= c( "black", "white")) + theme_ipsum() + theme(
