Hi

xyplot(y ~ x | subject) plots a separate graph of y against x for each
level of subject. But I would like to have an own function for each
level. Something like

xyplot(y ~ x | subject,
       panel = function(x,y) {
         panel.xyplot(x,y)

         panel.curve(x,y) {
           # something that dependents on the current subject
           ...
         }
       })


How I get the current subject? (The current subject is the title of the
graph, too)

thx
Christof

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to