| Mar {DescTools} | R Documentation |
Plot margins are normally set by par("mar"). However one is forced to define all margins, even if just one should be altered. This convenience function allows to set one single margin (or several) while leaving the others unchanged.
Mar(bottom = NULL, left = NULL, top = NULL, right = NULL, outer = FALSE)
bottom |
the bottom margin, if set to |
left |
the left margin, if set to |
top |
the top margin, if set to |
right |
the right margin, if set to |
outer |
logical, defining if inner margins ( |
Andri Signorell <andri@signorell.net>
# largen the left margin only Mar(left=10.1) # or as alternative: Mar(, 10.1) barplot(1:7, names=levels(d.pizza$driver))