similar to: ggplot equivalent of par(xaxt)

Displaying 5 results from an estimated 5 matches similar to: "ggplot equivalent of par(xaxt)"

2000 Mar 13
1
error in par option xaxt (PR#483)
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
2000 Mar 24
1
does xaxt="n" work
To R-people I recently downloaded an rpm for suse-linux of R-1.0 for suse 6.3. There plot(tx,spax,type='l',ylim=range(ytx),ylab="",xlab="",xaxt="n",yaxt="n") does not seem to supress printing on the axis. The same statement seemed to work well in R-0.9 on a redhat 5.2 (compiled by myself). Has anyone had the same experience? regards Helgi
2006 Dec 19
1
xaxt="n" for image()
Hi, The argument xaxt="n" for removing the x axis from a image plot does not work for me. I'm really using a function called plot.grassmeta() in library GRASS that is a wrapper for image(), but it seems to me that the problem is not in plot.grassmeta() but in image(). If I'm right could you tell me if there is a way to remove one axis from a call to image()? Thanks and wishes,
2001 Sep 21
1
behavior of xaxt = "n" with POSIXct dates
Prof. Ripley has provided very helpful information regarding X-axis labeling with POSIXct-class dates. Now I've run into another bit of problematic behavior. I'm running R 1.3.0 on Windows NT 4.0. When I create a plot with the optional argument xaxt = "n", and the X axis is generated from dates of class POSIXct, the X axis is plotted. Obviously, I'd like to prevent the X
2000 Mar 03
2
problem with xaxt="n"
Dear All, Under WinNT4.0sp5 using the binaries downloaded from CRAN (version 1.0.0), if I want to do a plot without the tick-marks and numbers on the x-axis, the following: > x <- rnorm(10) > y <- rnorm(10) > plot(x, y, xaxt="n") does not give what I expect, i.e. it gives the same than "plot(x, y)". However, the following works: > par(xaxt="n")