puetsch@bigfoot.de writes:
> It seems that the "lab" paramter of plot does not work as
desired.
>
> plot(sin)
> plot(sin,lab=c(5,5,5))
> plot(sin,lab=c(10,10,5))
>
> all give the same plot.
Not a bug. lab is not among the parameters that you can set in a
high-level plot (see the help page for par()). What you can do
is set it with a par() call before calling plot, i.e.
par(lab=c(10,10,5)) ; plot(sin)
--
O__ ---- Peter Dalgaard Blegdamsvej 3
c/ /'_ --- Dept. of Biostatistics 2200 Cph. N
(*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard@biostat.ku.dk) FAX: (+45) 35327907
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To:
r-devel-request@stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._