Full_Name: Ian McLeod Version: 1 OS: WinNT Submission from: (NULL) (129.100.45.131) The plot optional argument xaxt does not work. Setting xaxt="n" has no effect, the axis is annotated. The R online documention provides an example. See help(axis) and try to execute the illustrative script. The annotated labels are overwritten. For convenience, I have extracted the following from the help(axis) page: plot(1:4, rnorm(4), axes=FALSE) axis(1, 1:4, LETTERS[1:4]) axis(2) box() #- to make it look "as usual" plot(1:7, rnorm(7), type = 's', xaxt='n', col = 'red') axis(1, 1:7, LETTERS[1:7], col.axis = 'blue') -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- 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 _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
On Mon, 13 Mar 2000 aim@uwo.ca wrote:> Full_Name: Ian McLeod > Version: 1 > OS: WinNT > Submission from: (NULL) (129.100.45.131) > > > The plot optional argument xaxt does not work. Setting xaxt="n" has no effect, > the axis is annotated. The R online documention provides an example. See > help(axis) and try to execute the illustrative script. The annotated labels are > overwritten.You mean 1.0.0, I think. That bug is already fixed for R-release: as you are on Windows you will just need to compile it up from source As a workaround, par(xaxt='n') plot(1:7, rnorm(7), type = 's', col = 'red') _does_ work: it is only the inline setting that is broken, and only in that version. [I don't understand why this was sent out twice with different PR# numbers? Did you submit it twice?] -- Brian D. Ripley, ripley@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272860 (secr) Oxford OX1 3TG, UK Fax: +44 1865 272595 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- 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 _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._