[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

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

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(.,