| evenly | R Documentation |
For a continuous vector x, evenly and seq_min_max()
create a sequence of n evenly-spaced values over the range lower
– upper. By default, lower is defined as min(x) and upper as
max(x), excluding NAs. For a factor x, the function returns
levels(x).
evenly(x, n = 100, by = NULL, lower = NULL, upper = NULL)
seq_min_max(x, n, by = NULL, lower = NULL, upper = NULL)
x |
numeric; vector over which evenly-spaced values are returned |
n |
numeric; the number of evenly-spaced values to return. A default of
|
by |
numeric; the increment of the sequence. If specified, argument |
lower |
numeric; the lower bound of the interval. |
upper |
numeric; the upper bound of the interval. |
A numeric vector of length n.
See base::seq() for details of the behaviour of evenly() when
using by.
x <- rnorm(10)
n <- 10L
# 10 values evenly over the range of `x`
evenly(x, n = n)
# evenly spaced values, incrementing by 0.2
evenly(x, by = 0.2)
# evenly spaced values, incrementing by 0.2, starting at -2
evenly(x, by = 0.2, lower = -2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.