[R] help me again

Sundar Dorai-Raj doraiss at auburn.edu
Mon Nov 5 21:22:42 CET 2001


> -----Original Message-----
> From: owner-r-help at stat.math.ethz.ch
[mailto:owner-r-help at stat.math.ethz.ch] On Behalf Of > Damiano Visconti
> Sent: Monday, November 05, 2001 10:26 AM
> To: r-help at hypatia.math.ethz.ch
> Subject: [R] help me again
> 
> 
> I would like to know how I can set with a R-command 
> the values from decimal to exponential (e.g. from 0.001 to 10^-3)
> on the axis y.
> 
> Thank you
> 
> Damiano

Look in the help files for the axis(). Here's an example:


plot(x,y,axes=F,ylim=c(10^-5,10^-2))
axis(side=1)
axis(side=2,at=10^c(-5:-2),label=expression(10^-5,10^-4,10^-3,10^-2))
box()


Sundar

--
Sundar Dorai-Raj, Ph.D.
Assistant Professor
Discrete & Statistical Sciences   Office: (334) 844-3647
231 Allison Lab                   Fax: (334) 844-3611
Auburn University                 Email: dorairaj at dms.auburn.edu
Auburn AL 36849-5307              http://www.dms.auburn.edu/~dorairaj/

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._



More information about the R-help mailing list