the number of intervals between major ticks to be
divided by minor ticks in the x and y axes
xaxs, yaxs
The style of axis interval calculation to be used
for the x and y axes. By default it is "i" (internal): it just finds an axis
with pretty labels that fits within the original data range. You can also set
it to "r" (regular): it first extends the data range by 4 percent at each end
and then finds an axis with pretty labels that fits within the extended
range. See ?par for further explanation
xarg, yarg
a list of arguments to feed to minorAxis() for the
x and y axes. See the ?minorAxis help page for the possible arguments. See
?merge_list for further information.
add
whether to add to an existing plot
See Also
Similar functions: greySet and blackSet
To create axes with major and minor ticks: minorAxis
To print a plot in pdf: pdfDisplay
To automatically determine pretty interval limits: encase
y <- c(0,11,19,33)
x <- c(1,2,2.5,4)
a <- min(y)
b <- max(y)
f <- encase(a-1,b,5)
whiteSet(c(0,4), f, ytick = 5, ny = 5, xaxs = "r")
points(x, y, pch=19)