Displaying 1 result from an estimated 1 matches for "triedthings".
2009 Nov 26
1
lattice --- different properties of lines corresponding to type=c("l", "a") respectively
...think the subject says it all. I want to make a simple lattice plot,
using xyplot with the
argument type=c("l","a").
The problem then is that in the resulting plot it is
difficult/impossible 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))
an...