[R] mfrow is ignored by some plots

2007-07-19 Thread Jim Lemon
Hi all, I was just informed that the plots in the radial.plot family in the plotrix package do not plot correctly when using mfrow or mfcol to subdivide the plot window. I found one related message, an answer from Deepayan Sarkar to a question about lattice graphics, but that shed no light on

Re: [R] mfrow is ignored by some plots

2007-07-19 Thread Prof Brian Ripley
I'd ask the plotrix maintainer to fix his code! radial.plot saves and restores all the par() values, including mfrow and mfg. When you do par(mfrow=c(2,2)) the plot position is reset to the bottom right, and the next plot will advance to the top left (but par(new=TRUE) negates that). Please

Re: [R] mfrow is ignored by some plots

2007-07-19 Thread Jim Lemon
Prof Brian Ripley wrote: I'd ask the plotrix maintainer to fix his code! radial.plot saves and restores all the par() values, including mfrow and mfg. When you do par(mfrow=c(2,2)) the plot position is reset to the bottom right, and the next plot will advance to the top left (but