On Mon, Nov 1, 2010 at 11:10 AM, Uwe Ligges <lig...@statistik.tu-dortmund.de> wrote: > Not in R base graphics, but you can do easily with the grid package.
You can do anything in R base graphics! Sometimes it's been done for you, sometimes you just have to draw the whole thing yourself using lines(). In this case, someone has already done it for you. subplot() in package Hmisc: > require(Hmisc) > plot( 11:20, sample(51:60) ) > subplot( hist(rnorm(100)), 15, 55) Barry ______________________________________________ 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.