[6395] in s-news-athena
Re: Skipping subplots on divided plotting area
daemon@ATHENA.MIT.EDU (Dave Krantz)
Sat Feb 4 11:06:56 1995
Date: Sat, 4 Feb 1995 10:56:33 -0500
From: dhk@paradox.psych.columbia.edu (Dave Krantz)
To: petrsm@entu.cas.cz
Cc: dhk@paradox.psych.columbia.edu, s-news@utstat.toronto.edu
I'm sure there is a right answer to your question. But there
is a function that I find very useful for many different purposes,
including the one you ask about (it is one of my home-made functions):
noplot <- function(x=0:1, y=0:1, ...)
plot(x, y, type="n", axes=F, xlab="", ylab="", ...)
This allows you to skip a position by noplot().
Dave