transmute: Change variables and drop all others

Description Usage Arguments Value See Also Examples

Description

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

Usage

1
2
3
transmute(.self, ...)

transmute_(.self, ..., .dots)

Arguments

.self

Data frame

...

Additional parameters

.dots

Workaround for non-standard evaluation

Value

Data frame

See Also

Other data manipulations: mutate, nsa, reduce, summarise, within_group, within_node

Examples

1
2
3
dat <- Multiplyr (x=1:100, y=100:1)
dat %>% mutate (x=x*2)
dat %>% shutdown()

jeblundell/multiplyr documentation built on May 19, 2019, 12:39 a.m.