xnew_seq | R Documentation |
xnew_data()
Generate a new sequence of values for a vector.
xnew_seq(x, ...)
x |
The object to generate the sequence from. |
... |
Additional arguments passed to |
xnew_seq()
is a wrapper function on new_seq()
for use in xnew_data()
to avoid
having to repeating the column name.
new_seq()
and xnew_data()
.
data <- tibble::tibble(
a = c(1L, 3L, 4L),
b = c(4, 4.5, 6),
d = c("a", "b", "c")
)
xnew_data(data, a, b = new_seq(b, length_out = 3), xnew_seq(d, length_out = 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.