Re: [R] Retrieve part of (top right corner) of a "plot.data.frame" plot?

2007-06-20 Thread Deepayan Sarkar
On 6/20/07, Dan Bolser <[EMAIL PROTECTED]> wrote: > Hi, > > I believe this question has been asked before, but I cant find and don't > remember the answer. > > The problem is simple, calling 'plot.data.frame(x)' gives a nice 'matrix of > scatterplots' for each pair of columns in x. for example; > >

Re: [R] Retrieve part of (top right corner) of a "plot.data.frame" plot?

2007-06-20 Thread Dan Bolser
On 20/06/07, Sébastien <[EMAIL PROTECTED]> wrote: > > Hi, > > That is maybe not the most elegant way but you can hide some plots > regions by add a white polygon, eg: > > polygon(x=c(1,1,0,...),y=c(0,1,0,...),col=0,xpd=xpd) Yeah, that is no good because it is the scale of the 'full' plot that is

Re: [R] Retrieve part of (top right corner) of a "plot.data.frame" plot?

2007-06-20 Thread Sébastien
Hi, That is maybe not the most elegant way but you can hide some plots regions by add a white polygon, eg: polygon(x=c(1,1,0,...),y=c(0,1,0,...),col=0,xpd=xpd) Just a personnal question, can you modify the content of the "title" boxes without changing the names of the variables, e.g. "myParame

[R] Retrieve part of (top right corner) of a "plot.data.frame" plot?

2007-06-20 Thread Dan Bolser
Hi, I believe this question has been asked before, but I cant find and don't remember the answer. The problem is simple, calling 'plot.data.frame(x)' gives a nice 'matrix of scatterplots' for each pair of columns in x. for example; x <- data.frame(a=jitter(01:20), b=jitter(20:01),