Skip to content
Prev 174302 / 398506 Next

Howto Supress Extra Blank Page in gridBase

Gundala Viswanath <gundalav <at> gmail.com> writes:
The question is: why do you mix standard graphics with grid? There might
be reasons to do so, but I don't see why this is the case here. Simply
omit all grid calls:

# NO additional library required
par(mfrow=c(2, 2), mfg=c(1, 1), mar=c(3, 3, 1, 0))
for (i in 1:4) {
  plot(1:10)
}


Dieter