Thus spake Sundar Dorai-Raj:

+  R> plot(x=1:26,y=rep(0:1,13),type="n")
+  R> text(x=1:26,y=0.5,labels=letters,col=terrain.colors(26))

now i get it.  what i am doing now is:

R> mycol <- cls
R> mycol[mycol==0] <- "red"
R> mycol[mycol==1] <- "blue"
R> mycol[mycol==2] <- "green"
R> plot(x, y, type="n")
R> text(x, y, labels=cls, col=mycol)

which is exactly what i wanted.

thanks!!
saurav

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

Reply via email to