Hi,

Is it possible to use par() within par()? Something like:
par(mfcol=c(2,2),mar=c(4.5,4.5,2,2))
op  <- par(las=1,xaxs="r",mai=c(1,0.75,1,1))
plot(hist(x),main="",xlim=c(0,100),xaxt="n",yaxt="n",xlab="",ylab="",border="white")
axis(1,at=c(0,20,40,60,80,100),line=-1,cex.axis=0.7,padj=-1.5)
par(new=TRUE)
y<-hist(log10(x))
par(op)

plot(sort(log10(x)))

dev.off()

Thanks
-- 
Shane

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to