i have two vectors of numbers x and y and of course i can do the standard scatterplot plot(x,y) and it looks fine. But, I was hoping there was a way to do the scatterplot so that each point plotted is a number where the number represents the index in the dataset. so, if it was x[3] and y[3], then the point would be a 3 or if it was x[4] and y[4], then the point would be a 4 etc. i doubt this is possible but i figured i would ask anyway. thanks. mark
On 6/16/06, markleeds@verizon.net <markleeds@verizon.net> wrote:> > i have two vectors of numbers x and y and of course i > can do the standard scatterplot plot(x,y) > and it looks fine. But, I was hoping there was a way to > do the scatterplot so that each point plotted is a number > where the number represents the index in the dataset.plot(x, y, type="n") text(x, y, 1:length(x)) i doubt this is possible but i figured i would ask anyway.> thanks.This is R... everything is possible, just not always easy. Sarah -- Sarah Goslee [[alternative HTML version deleted]]
> z <- as.character(1:length(x)) > plot(x, y, pch = z)Regards, Jeff On 6/16/06, markleeds@verizon.net <markleeds@verizon.net> wrote:> > i have two vectors of numbers x and y and of course i > can do the standard scatterplot plot(x,y) > and it looks fine. But, I was hoping there was a way to > do the scatterplot so that each point plotted is a number > where the number represents the index in the dataset. > > so, if it was x[3] and y[3], then the point would be a 3 > or if it was x[4] and y[4], then the point would be a 4 etc. > > i doubt this is possible but i figured i would ask anyway. > thanks. > > mark > > ______________________________________________ > R-help@stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! > http://www.R-project.org/posting-guide.html >[[alternative HTML version deleted]]