[R] Labels in plot()
Erik Iverson
iverson at biostat.wisc.edu
Fri Feb 22 20:33:15 CET 2008
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 wrote:
> Hi,
>
> Look here:
>
> xy<-matrix(rnorm(100,100,10),50)
> plot(xy,ann=F,labels=F)
>
> Even though the error is reported, the "labels" do what I want them
> to. Any reason for this?
>
> Thanks,
> Marcin
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
More information about the R-help
mailing list