[R] Plotting logarithmic and semiloarithmic charts.

2006-08-07 Thread Ralf Finne
Dear all,

Can anyone help me to find functions 
like LOGLOG and SEMILOG in Matlab.

I am sure that they are out there.
Thanks in advance

Ralf Finne

__
R-help@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.


Re: [R] Plotting logarithmic and semiloarithmic charts.

2006-08-07 Thread Peter Dalgaard
Ralf Finne [EMAIL PROTECTED] writes:

 Dear all,
 
 Can anyone help me to find functions 
 like LOGLOG and SEMILOG in Matlab.
 
 I am sure that they are out there.
 Thanks in advance

plot(., log=y)
plot(., log=x)
plot(., log=xy)

-- 
   O__   Peter Dalgaard Ă˜ster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark  Ph:  (+45) 35327918
~~ - ([EMAIL PROTECTED])  FAX: (+45) 35327907

__
R-help@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.


Re: [R] Plotting logarithmic and semiloarithmic charts.

2006-08-07 Thread hadley wickham
  Can anyone help me to find functions
  like LOGLOG and SEMILOG in Matlab.
 
  I am sure that they are out there.
  Thanks in advance

 plot(., log=y)
 plot(., log=x)
 plot(., log=xy)

or

install.packages(ggplot)
library(ggplot)
qplot(., log=y)
qplot(., log=x)
qplot(., log=xy)

which work with all types of graphics, not just scatterplots.

You can transform the axes using any monotone function, see
?pscontinuous for examples.

Hadley

__
R-help@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.