A wrapper for pretty
.
pretty_within(x, min.n = 5, xrange = range(x, na.rm = TRUE), ...)
Numeric vector passed to pretty
.
Integer scalar passed to pretty
.
Numeric vector of length 2. Indicates the range in which the output vector should lie on.
Further arguments passed to the method.
The only difference with pretty
is that this function subsets the
resulting vector as
tick[(tick >= xrange[1]) & (tick <= xrange[2])]
A vector sequence of `n + 1` round values in the specified range.