Re: [R] plot.zoo labels

2008-07-02 Thread Gabor Grothendieck
cumentation, but it does not seem this is > possible. > > Thanks again > > > > > "Gabor Grothendieck" <[EMAIL PROTECTED]> > 07/01/2008 11:42 PM > > To > [EMAIL PROTECTED] > cc > r-help@r-project.org > Subject > Re: [R] plot.zoo labels

Re: [R] plot.zoo labels

2008-07-02 Thread ryan . sheftel
in "Gabor Grothendieck" <[EMAIL PROTECTED]> 07/01/2008 11:42 PM To [EMAIL PROTECTED] cc r-help@r-project.org Subject Re: [R] plot.zoo labels xy.labels is used to control text by the individual points when plotting scatterplots of one zoo series vs. another -- not the axis labe

Re: [R] plot.zoo labels

2008-07-01 Thread Gabor Grothendieck
xy.labels is used to control text by the individual points when plotting scatterplots of one zoo series vs. another -- not the axis labels. e.g. library(zoo) set.seed(1) z <- zoo(rnorm(10)) plot(z, z, xy.label = letters[1:10]) Assuming a single panel plot this will suppress the x axis label but s

Re: [R] plot.zoo labels

2008-07-01 Thread stephen sefick
xaxt="n" and yaxt="n" should do the trick if you just want to suppress the labels. check ?par for further refinement On Tue, Jul 1, 2008 at 5:25 PM, <[EMAIL PROTECTED]> wrote: > I would like to know if there is a way to use plot(zoo) and suppress the > label text to increase the amount of the sc