View source: R/step-subset-transmute.R
transmute.dtplyr_step | R Documentation |
This is a method for the dplyr transmute()
generic. It is translated to
the j
argument of [.data.table
.
## S3 method for class 'dtplyr_step'
transmute(.data, ...)
.data |
A |
... |
< The value can be:
|
library(dplyr, warn.conflicts = FALSE)
dt <- lazy_dt(dplyr::starwars)
dt %>% transmute(name, sh = paste0(species, "/", homeworld))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.