Description Usage Arguments Value See Also Examples
This function works like a combination of mutate and select: it may be used to modify values in a data frame, and then drops any column not explicitly specified
1 2 3 | transmute(.self, ...)
transmute_(.self, ..., .dots)
|
.self |
Data frame |
... |
Additional parameters |
.dots |
Workaround for non-standard evaluation |
Data frame
Other data manipulations: mutate,
nsa, reduce,
summarise, within_group,
within_node
1 2 3 | dat <- Multiplyr (x=1:100, y=100:1)
dat %>% mutate (x=x*2)
dat %>% shutdown()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.