Displaying 1 result from an estimated 1 matches for "repa0".
Did you mean:
repat
2009 Nov 26
1
lattice --- different properties of lines corresponding to type=c("l", "a") respectively
...ossible to see which plot corresponds to the average
and which to the individual profiles. I triedthings like extra
arguments lwd=c(1,3) or col=c("blue","red")
hoping this would be interpreteded parallely to the type= argument,
but no. Like:
xyplot(response ~ time|group, repa0, groups=~Participant, type=c("b",
"a"), lwd=c(1, 3),
ylim=c(0, 10))
and many other variants ...
Then I vent for writing my own panel functions:
mypanel <- function(x, y, ..., type){
panel.average(x, y, ..., horizontal=FALSE)
panel.xyplot(x, y, ..., type=type...