Re: [R] please help ! label selected data points in huge number of data points potentially as high as 50, 000 !

2011-03-06 Thread csrabak
Em 5/3/2011 21:29, Umesh Rosyara escreveu: Dear All I am reposting because I my problem is real issue and I have been working on this. I know this might be simple to those who know it ! Anyway I need help ! Let me clear my point. I have huge number of datapoints plotted using either base plot f

Re: [R] please help ! label selected data points in huge number of data points potentially as high as 50, 000 !

2011-03-06 Thread Sarah Goslee
I think you've made your problem too complicated. Given your example below (and THANK YOU for including a workable example), is this not what you need? sigdata <- dataf[dataf$p < 0.01,] plot(dataf$xvar, dataf$p) text(sigdata$xvar, sigdata$p, sigdata$name) text() will take vectors of arguments.

[R] please help ! label selected data points in huge number of data points potentially as high as 50, 000 !

2011-03-05 Thread Umesh Rosyara
Dear All I am reposting because I my problem is real issue and I have been working on this. I know this might be simple to those who know it ! Anyway I need help ! Let me clear my point. I have huge number of datapoints plotted using either base plot function or xyplot in lattice (I have prefe