Is there any way to reduce the amount of whitespace around pie charts generated using the base plotting tools in R?
I'd like to create a multi-panel figure but I can't figure out a way to reduce the amount of whitespace around the plot.
Example code:
par(mfrow=c(2,1))
pie(1:5)
pie(rep(1,5))
I tried playing with mar
, omi
, and oma
within par()
, but all values for those vectors seem to already be set to zero, and negative values are not accepted. Any way around this?