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
"Ralf Finne" <Ralf.Finne at syh.fi> 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 advanceplot(....., 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 ~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907
> > 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