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

Reply via email to