Re: [R] Logarithmic axis -- now in new version of 'sfsmisc'

2007-11-21 Thread Martin Maechler
> "GaGr" == Gabor Grothendieck <[EMAIL PROTECTED]> > on Tue, 20 Nov 2007 13:35:34 -0500 writes: GaGr> See: GaGr> http://finzi.psych.upenn.edu/R/Rhelp02a/archive/57255.html Also, incidentally several weeks ago, I had added the following to the 'ChangeLog' of my package "sfsmis

Re: [R] Logarithmic axis

2007-11-20 Thread Julian Burgos
Like always, there is much to be learned from the R-help list! Another message had a much simpler approach. plot(xy.coords(reizstaerke, kennlinie1, log="x"), log="x") Julian Julian Burgos wrote: > Hey John, > > You can do simply > > plot(reizstaerke, kennlinie1, ylim=c(0, max(kennlinie1, >

Re: [R] Logarithmic axis

2007-11-20 Thread Julian Burgos
Hey John, You can do simply plot(reizstaerke, kennlinie1, ylim=c(0, max(kennlinie1, kennlinie2)),log="x") but if you want to fine tune where the tick marks are, you can do it "by hand". kennlinie1 <- c(8.0746909, 3.9916973, 9.9789444, 19.962869); kennlinie2 <- c(6.0994206, 8.9661081, 19.924

Re: [R] Logarithmic axis

2007-11-20 Thread Gabor Grothendieck
See: http://finzi.psych.upenn.edu/R/Rhelp02a/archive/57255.html On Nov 20, 2007 1:21 PM, John Wiedenhoeft <[EMAIL PROTECTED]> wrote: > Hi there, > > I guess this must be a standard issue, but I'm starting to go crazy with it. I > simply want a plot with the x axis being logarithmic, having labels

[R] Logarithmic axis

2007-11-20 Thread John Wiedenhoeft
Hi there, I guess this must be a standard issue, but I'm starting to go crazy with it. I simply want a plot with the x axis being logarithmic, having labels 1, 10, 100..., and ten unlabelled ticks between each of them - just as they introduce logarithmic axis at school. I've played around a bit

[R] Logarithmic axis

2007-11-20 Thread John Wiedenhoeft
Hi there, I guess this must be a standard issue, but I'm starting to go crazy with it. I simply want a plot with the x axis being logarithmic, having labels 1, 10, 100..., and ten unlabelled ticks between each of them - just as they introduce logarithmic axis at school. I've played around a bit