Displaying 1 result from an estimated 1 matches for "whichlonp".
Did you mean:
whichline
2004 Nov 26
1
problem with xyplot
...;green","yellow","orange","magenta","cyan")
ss$pch <- format(1:7)
ss$cex <- 1.2
ss <- trellis.par.get("background")
ss$col <- "white"
trellis.par.set("background",ss)
xyplot(t~s,data=P0,
subset = p==1500 & whichLonP==2 & whichLatP==3 & t<6 & id>100000000,
groups = id%/%1000)
# don't see groups 6 and 7 ?????????????
But groups can be put into separate panels:
xyplot(t~s|factor(id%/%1000),data=P0,as.table=TRUE,
subset = p==1500 & whichLonP==2 & whichLatP==3 & t<6 &...