Re: [R] axis: forcing last label to print

2009-09-20 Thread Shawn Polson
Thanks for the suggestion Jim, A good thought, but unfortunately this doesn't quite work either: -Since my example is log scale on that axis, the linearly spaced labels still become to numerous near the end forcing the last label not to print -Also, the labels don't print under the appropriate

Re: [R] axis: forcing last label to print

2009-09-20 Thread Jim Lemon
On 09/20/2009 02:12 PM, Shawn Polson wrote: Hello, I often use the axis command to add labels to axes with large numbers of consecutively numbered names: y<- barplot (x, log="x") axis(1, at = y, labels = c(1:12345)) Since there are more labels than will fit in the space, the command only print

[R] axis: forcing last label to print

2009-09-19 Thread Shawn Polson
Hello, I often use the axis command to add labels to axes with large numbers of consecutively numbered names: y<- barplot (x, log="x") axis(1, at = y, labels = c(1:12345)) Since there are more labels than will fit in the space, the command only prints selected labels. This is what I want, exce