On Sun, Sep 21, 2008 at 11:23 AM, Li, Bingshan <[EMAIL PROTECTED]> wrote: > Hi John, > > Yes, you are right. I meant "greater-than-or-equal". According to your > suggestion, I can plot the symbol only. But what I want is to have >=1, >=2 > and so on as labels on xaxis. I did not make it work. Do you know how to make > it? The expression("">=1"") did not work, and paste(expression("">=""), 1) > did not work either. >
Try this: plot(1:10, xaxt = "n") for(i in 1:10) axis(1, i, bquote(phantom(0) >= .(i))) ______________________________________________ R-help@r-project.org 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.