Re: [R] Graphics Reciprocal labeling

2011-10-30 Thread Hurr
I suppose I wasn't clear enough. For some purposes, I want to label the horizontal axis like the first label-line below. It separates the longer periods better even though it squashes the shorter ones. The real scale for the corresponding plotted data is the second label-line. The same-range linear

Re: [R] Graphics Reciprocal labeling

2011-10-29 Thread Hurr
I need just a little more education. I still haven't got back into attempting R programs, but I have appreciated your information. The linear-in-frequency horizontal-axis scale is natural for frequency analysis, and so labeling in period is applicable. Also applicable for better view is an exponen

Re: [R] Graphics Reciprocal labeling

2011-10-29 Thread Hurr
Thank you both so very much. -- View this message in context: http://r.789695.n4.nabble.com/Graphics-Reciprocal-labeling-tp3949054p3950480.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.e

Re: [R] Graphics Reciprocal labeling

2011-10-28 Thread Jim Lemon
On 10/29/2011 09:23 AM, Hurr wrote: Can I also label selected reciprocal numbers easily either alongside or without the automatic ones, and have them automatically in their correct spots. Sorry, I really don't know R now. Hi Hurr, What you want is probably achievable with the "axis" function. T

Re: [R] Graphics Reciprocal labeling

2011-10-28 Thread David Winsemius
On Oct 28, 2011, at 6:23 PM, Hurr wrote: Can I also label selected reciprocal numbers easily either alongside or without the automatic ones, and have them automatically in their correct spots. Sorry, I really don't know R now. I am unable to parse your request into standard English. Please po

Re: [R] Graphics Reciprocal labeling

2011-10-28 Thread Hurr
Can I also label selected reciprocal numbers easily either alongside or without the automatic ones, and have them automatically in their correct spots. Sorry, I really don't know R now. -- View this message in context: http://r.789695.n4.nabble.com/Graphics-Reciprocal-labeling-tp3949054p3949357.

Re: [R] Graphics Reciprocal labeling

2011-10-28 Thread David Winsemius
On Oct 28, 2011, at 3:57 PM, Hurr wrote: Does R graphics have a way to easily label the horizontal axis by the reciprocal of the scaled value? plot(x<-1:10,y<-1:10, xaxt="n") axis(1, at=1:10, labels=round(1/x, 3) ) It is a bit more difficult to do it as a fractional label but possible:

[R] Graphics Reciprocal labeling

2011-10-28 Thread Hurr
Does R graphics have a way to easily label the horizontal axis by the reciprocal of the scaled value? -- View this message in context: http://r.789695.n4.nabble.com/Graphics-Reciprocal-labeling-tp3949054p3949054.html Sent from the R help mailing list archive at Nabble.com. __