Hi all,

I've been trying for hours, but I do not find a Solution. I want to plot 12 
variables over time in separate diagrams in one plot/window using lattice. Two 
columns, six rows. I used print with the split command, but the graphics are 
getting really small. Can someone please help me.

Following data example:
dta = data.frame(
            day=c(1,2,3,4,5,6,7),
            var11=c(1,2,2,4,5,3,2),
            var12=c(1,2,2,4,5,3,2),
            var13=c(1,2,2,4,5,3,2),
            var14=c(1,2,2,4,5,3,2),
            var15=c(1,2,2,4,5,3,2),
            var16=c(1,2,2,4,5,3,2),
            var17=c(1,2,2,4,5,3,2),
            var18=c(1,2,2,4,5,3,2),
            var19=c(1,2,2,4,5,3,2),
            var10=c(1,2,2,4,5,3,2),
            var11=c(1,2,2,4,5,3,2),
            var12=c(1,2,2,4,5,3,2))

Any idea how I can plot varXX over day like xyplot(var11 ~ day, data=dta, 
type='b', scales=list(cex=0.5), xlab=NULL, ylab=list(cex=0.5)) and get readable 
graphs?

Thanks in advance.
Marcus

______________________________________________
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