[R] Labels for Points- 2 character labels?

David Barron mothsailor at googlemail.com
Thu Oct 19 12:15:48 CEST 2006


Is this what you want?

> plot(e,n)
> text(e,n,labels=e_order,pos=4)


On 18/10/06, ableape <renaldo at ableape.us> wrote:
> I would like to be able to label each point in a scatter plot with
> the numeric order of that point. for example, I create the following plot:
>
> plot(e,n)
> #
> # now I go back and create my labels
> #
> for(i in 1:length(e)) {                                    # lets say e <10
>         pc <- as.character(e_order[i])               # e_order has an
> integer array 1,4,3,2... which is the order of e
>         points(e15[i], n15[i],pch=pc)                # this will plot
> 0-9 as data labels
>
>       }
> #
> The above works for single characters.  Now if the length of e[] is
> greater than 9, the character string converted by as.character will
> yield more than one digit. At this point, my labeling trick fails:-(
>
> 1) is there a way to create two character labels for a plot?
> 2) Or even better, is there a way to do what I am trying to
> do.  Label each point by its numeric order?
>
> Thanks for your help.
>
> Renaldo
>
> ______________________________________________
> R-help at 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
> and provide commented, minimal, self-contained, reproducible code.
>


-- 
=================================
David Barron
Said Business School
University of Oxford
Park End Street
Oxford OX1 1HP



More information about the R-help mailing list