Skip to content
Prev 44223 / 398503 Next

How to plot a blank plot

On Fri, 13 Feb 2004 12:11:26 -0800, you wrote:

            
"frame()" is probably what you want.

You can also get a blank plot (but set up coordinates, etc.) with
something like

plot(1, type="n", axes=F, xlab="", ylab="")

This would allow you to plot points and lines and text in the empty
space; frame() would not.

Duncan Murdoch