On 10/19/07, Steffen Neumann (on the road) <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to create a plot with pairs() > using a gplot.hexbin() for each pair. > > For pairs I can provide a custom upperPanel function: > > pairs(iris[1:4], panel=mypanel) > > and mypanel() calls plot.hexbin(): > > library(hexbin) # Bioconductor > mypanel <- function(x, ...){ > hb <- hexbin(x) > plot(hb) > } > > The problem is that gplot.hexbin() is based > on the grid-graphics, and each hexplot > goes over my complete graphics device. > > I suspect that I can use the gridBase package > to put the two together, but I am somehow lost.
You probably could, but you should first check to see if hexplom() works for you. -Deepayan ______________________________________________ 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.