search for: simprob

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

Did you mean: simprof
2006 Jan 26
1
panel.xyplot : incorrectly "connecting" points
...between = list(x = .5, y = .5), scales = list(alternating = TRUE)) The second of these displays the grid as I need, but incorrectly "connects" the points from _different_ GROUP values within each panel. I have made sure that GROUP is an ordered factor: xyplot(PROB ~ MEAN | SD, data = SimProb, groups = GROUP, between = list(x = .5, y = .5), scales = list(alternating = TRUE), panel = function(x, y, ...) { panel.grid(h=-1, v=-1, lwd = 1) panel.xyplot(x, y, type = 'b', col = 1, lwd = 2, cex = 1.2, ...) } ) I am sure that this...