Displaying 2 results from an estimated 2 matches for "bellassen".
2008 Feb 25
4
Highlighting different series with colors
Hello,
I have a data frame with 3 vectors $x, $y, and $type. I would like to
plot $x~$y and having different colors for the corresponding points, one
for each level of $type. Would someone know how to do that? Is it
possible to then generate a legend automatically?
Valentin
2008 Feb 26
2
Multiple lines with a different color assigned to each line (corrected code)
Sorry, I just realized I didn't type in the correct
names of the variables I am working with, this is how
it should be:
plot(1,1,type="n")
for (i in summ$tx) {
points(summ$timep[summ$tx==i],summ$mn[summ$tx==i])
lines(summ$timep[summ$tx==i],summ$mn[summ$tx==i])
}
Thank you,
Judith
____________________________________________________________________________________