Full_Name: Zdenek Skala Version: 1.0.0 OS: MS Windows 95 Submission from: (NULL) (194.108.127.14) Dear all, a problem with barplot() was already discussed on R-help for R 0.90.0 - sorry, if this is a known bug, but I was unable to find it in the bugs database. In:> barplot(c(.1,.5,1), ylim=(0:1))or> barplot(c(.1,.5,1), ylim=c(0,1))the y axis is drawn from 0.2 to 0.8, in:> barplot(c(.1,.5,1))the y axis is drawn from 0.0 to 0.8. As I was notified earlier by Peter Dalgaard, "the axis settings use yaxs='i' (or xaxs if horizontal) which sets the plot boundaries equal to the ylim (stated or computed) and marks the axes "internally". The endpoints of the axes are not considered to be internal." Sorry again if this is already reported. With regards Zdenek Skala -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- 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 _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
skala@incoma.cz writes:> > barplot(c(.1,.5,1), ylim=c(0,1)) > the y axis is drawn from 0.2 to 0.8, in:> As I was notified earlier by Peter Dalgaard, "the axis settings use yaxs='i' > (or xaxs if horizontal) which sets the plot boundaries equal to the ylim > (stated or computed) and marks the axes "internally". The endpoints of the > axes are not considered to be internal." > Sorry again if this is already reported.I actually thought we had that one fixed, but obviously not ... As usual, the workaround is to extend the ylim a tiny bit: barplot(c(.1,.5,1), ylim=c(-.001,1.001)) -- 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 _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._