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, ...)

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-devel

Reply via email to