Full_Name: Steven Novick
Version: 1.6.2
OS: Windows NT
Submission from: (NULL) (198.85.98.225)
The current code snippet in panel.stripplot is:
if (is.null(groups))
panel.xyplot(x = x.jitter, y = y.jitter, ...)
else panel.superpose(x = x.jitter, y = y.jitter, ...)
Because groups is passed as a function argument in panel.stripplot and is not
part of the list(...), the "else" should read
else panel.superpose(x = x.jitter, y = y.jitter, groups=groups, ...)
panel.stripplot (PR#2694)
1 message · steven.j.novick@gsk.com