I plot a pie chart but get some questions on how to modify it. My code is
library(plotrix)
df <- c(29, 29, 36,26)
lbls <- c("Blue(29)","Gold(29)","Green(36)","Orange(26)")
labelco <- c('Blue','yellow','springgreen3','darkorange1')
pie3D(df, main="Yi Li's Color", labels=lbls, radius=0.5,
col = labelco ,labelrad=1.7,
explode=0.1)
and you can get a pie chart below: pie chart I made
Is anyone can teach me: how to change label format(maybe choose Times New Roman), distance between main text and plot, and put the number on the each parts ? Thank you very much. Best Regards,