search for: dothese

Displaying 1 result from an estimated 1 matches for "dothese".

Did you mean: dotest
2010 Jun 02
1
lattice, xyplot, using "panel.segments" by just addressing one panel
...t (but this code might be a bit messy. Apologies!) sn is the variable used to split according to panel. I just tried to do the links for 2 panel here: fx <- split(links$fx,links$sn) fy <- split(links$fy,links$sn) tx <- split(links$tx,links$sn) ty <- split(links$ty,links$sn) sn <- sn dothese <- c(1,2) ct <- 0 for (i in dothese){ ct <- ct + 1 x1 <- fx[[i]] y1 <- fy[[i]] x2 <- tx[[i]] y2 <- ty[[i]] } xyplot(LogN~LogM|factor(surber), par.settings = list(strip.background = list(col = "transparent")), xlab = "Log M", ylab = "Log N",...