Let\'s say I have this simple data:
mydata <- data.frame(group=c(\"A\", \"B\", \"0\", \"AB\"), FR=c(20, 32, 32, 16))
If I want to creat
You can try with the pie3D() function from the plotrix package:
pie3D()
plotrix
library(plotrix) pie3D(mydata$FR, labels = mydata$group, main = "An exploded 3D pie chart", explode=0.1, radius=.9, labelcex = 1.2, start=0.7)