I'm having troubles with creating nice looking pie charts in R using plotrix:pie3D. In my datasets I have one value that represent smaller 1% of the total, but when I make the pie chart the smallest piece is not displayed.
My Code:
data <- data.frame(Äpfel = 123, Birnen = 10, Bananen = 1, Pflaumen = 8)
pie3D(t(data), theta = 0.95, start = pi/2)
Output:

Does anyone have an idea how I can solve the problem?
I'm having troubles with creating nice looking pie charts in R using plotrix:pie3D. In my datasets I have one value that represent smaller 1% of the total, but when I make the pie chart the smallest piece is not displayed.
My Code:
Output:

Does anyone have an idea how I can solve the problem?