powered by
This is a method for the dplyr transmute() generic. It is translated to the j argument of [.data.table.
transmute()
j
[.data.table
# S3 method for dtplyr_step transmute(.data, ...)
A lazy_dt().
lazy_dt()
<data-masking> Name-value pairs. The name gives the name of the column in the output.
data-masking
The value can be:
A vector of length 1, which will be recycled to the correct length.
A vector the same length as the current group (or the whole data frame if ungrouped).
NULL, to remove the column.
NULL
A data frame or tibble, to create multiple columns in the output.
library(dplyr, warn.conflicts = FALSE) dt <- lazy_dt(dplyr::starwars) dt %>% transmute(name, sh = paste0(species, "/", homeworld))
Run the code above in your browser using DataLab