Skip to content
Prev 44192 / 398503 Next

How to plot a blank plot

On Fri, 2004-02-13 at 14:11, Adrian Custer wrote:
Try either:

par(mfrow=c(2,1))
frame()
hist(rgamma(100000,6463.7,scale=0.015471),xlim=c(0,120),main="Emergence")

or 

par(mfrow=c(2,1))
plot.new()
hist(rgamma(100000,6463.7,scale=0.015471),xlim=c(0,120),main="Emergence")

See ?plot.new or ?frame, which will lead you to the same help page.

HTH,

Marc Schwartz