Re: [R] Labels in plot()

2008-02-22 Thread Erik Iverson
Should be ?axis , not ?axes, apologies. Erik Iverson wrote: > Marcin - > > Those are warnings, not errors. You probably are looking for > > plot(xy, ann = FALSE, axes = FALSE) > > If you want a box drawn around the plot still, try > > plot(xy, ann = FALSE, axes = FALSE, frame.plot = TRUE) > >

Re: [R] Labels in plot()

2008-02-22 Thread Erik Iverson
Marcin - Those are warnings, not errors. You probably are looking for plot(xy, ann = FALSE, axes = FALSE) If you want a box drawn around the plot still, try plot(xy, ann = FALSE, axes = FALSE, frame.plot = TRUE) see ?plot.default and ?axes for more options. Best, Erik Iverson Marcin Kozak w