axisTicks {grDevices} | R Documentation |
Compute pretty axis scales and tick mark locations, the same way as traditional R graphics do it. This is interesting particularly for log scale axes.
axisTicks(usr, log, axp = NULL, nint = 5) .axisPars(usr, log = FALSE, nintLog = 5)
usr |
numeric vector of length 2, with |
log |
logical indicating if a log scale is (thought to be) in use. |
axp |
numeric vector of length 3, |
nint, nintLog |
positive integer value indicating
(approximately) the desired number of intervals.
|
axisTicks(usr, *)
calls .axisPars(usr, ..)
when
axp
is missing (or NULL
).
axisTicks()
returns a numeric vector of potential axis tick
locations, of length approximately nint+1
.
.axisPars()
returns a list
with components
axp |
numeric vector of length 2, |
n |
integer (code), with the same meaning as
|
axTicks
;
axis
, and par
(from
the graphics package).
##--- Demonstrating correspondence between graphics' ##--- axis() and the graphics-engine agnostic axisTicks() : require("graphics") plot(10*(0:10)); (pu <- par("usr")) aX <- function(side, at, ...) axis(side, at = at, labels = FALSE, lwd.ticks = 2, col.ticks = 2, tck = 0.05, ...) aX(1, print(xa <- axisTicks(pu[1:2], log = FALSE))) # x axis aX(2, print(ya <- axisTicks(pu[3:4], log = FALSE))) # y axis axisTicks(pu[3:4], log = FALSE, n = 10) plot(10*(0:10), log = "y"); (pu <- par("usr")) aX(2, print(ya <- axisTicks(pu[3:4], log = TRUE))) # y axis plot(2^(0:9), log = "y"); (pu <- par("usr")) aX(2, print(ya <- axisTicks(pu[3:4], log = TRUE))) # y axis