Re: [R] special symbols into a text string

2010-03-14 Thread S Ellison
See ?plotmath, especially the examples. S >>> Gerard Smits 03/14/10 3:38 PM >>> All, I am trying to put a few special symbols into a string to place on a graph (e.g., >= and superscript 2). This clearly works, but does not look good: text<-c("x2", "A>=B") I tried pasting in the >= symbol

Re: [R] special symbols into a text string

2010-03-14 Thread Uwe Ligges
See ?plotmath Example: plot(1:10); text(4:5, 5:4, c(expression(A >= B), expression(x^2))) Uwe Ligges On 14.03.2010 16:38, Gerard Smits wrote: All, I am trying to put a few special symbols into a string to place on a graph (e.g.,>= and superscript 2). This clearly works, but does not look

[R] special symbols into a text string

2010-03-14 Thread Gerard Smits
All, I am trying to put a few special symbols into a string to place on a graph (e.g., >= and superscript 2). This clearly works, but does not look good: text<-c("x2", "A>=B") I tried pasting in the >= symbol, but just comes out as an =. I have tried expression() with no luck: text<-c("x2