On 6/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> 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]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to