In excel, there are tons of different ways to give a very professional look to pie charts, like shadowing, a bit of radial colors (as shown in the following image):
However in R I don't seem to find options to try to customise a pie chart, as you all know this is the standard way in R. Maybe a better option exists in ggplot2?
df <- data.frame(
group = c("Male", "Female", "Car"),
value = c(27, 23, 50),
explanation <- c("Male: 27%", "Female: 23%", "Car: 50%")
)
bp<- ggplot(df, aes(x="", y=value, fill=explanation))+
geom_bar(width = 1, stat = "identity")
bp
pie <- bp + coord_polar("y", start=0)
pie + theme_minimal() + theme( panel.grid = element_blank(),
axis.ticks = element_blank(),
axis.title.x = element_blank(),
panel.border = element_blank(),
axis.title.y = element_blank(),
axis.text = element_blank(),)