I am plotting a 3D pie chart using pie3D
from plotrix
package:
dev.new(width=6, height=5)
pie3D(weights, radius = 0.8, labels=paste(names(weights), labels, sep = "\n"), explode=0.05, mar=c(4, 4, 4, 4), border = F, col = my.col, main="Asset Allocation", labelcex = 0.8, shade = 0.5)
and I get the following:
As you can see, the labels are on top of each other. I tried modifiying the mar
input (margins), but it doesn't quite work. Would there be a way to increase spacing between the labels on the graph, so that it is less jammed? Please keep in mind that I want the radius of the graph to stay fixed at 0.9
Thanks!