Dear R-users,

I was wondering if there was a way to adjust the placement of the axis titles for the last page of a multi-page lattice plot (see example below). Depending on the total number of panels, the placement of these titles might look strange on the last page, if the layout is not adjusted (e.g. in some template code).

Any thought on this issue would be welcome.

Sebastien

library(lattice)

mydata <- data.frame(x=rep(1:10,8),
                    y=rep(1:10,8),
                    id=rep(1:8,each=10))
xyplot(y~x|id,as.table=T,data=mydata,layout=c(2,3))

______________________________________________
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