Learn R Programming

tidylog (version 0.2.0)

transmute: Wrapper around dplyr::transmute and related functions that prints information about the operation

Description

Wrapper around dplyr::transmute and related functions that prints information about the operation

Usage

transmute(.data, ...)

transmute_all(.data, ...)

transmute_if(.data, ...)

transmute_at(.data, ...)

Arguments

.data

a tbl; see transmute

...

Value

see transmute

Examples

Run this code
# NOT RUN {
transmute(mtcars, mpg = mpg * 2)
#> transmute: dropped 10 variables (cyl, disp, hp, drat, wt, ...)
#> transmute: changed 32 values (100%) of 'mpg' (0 new NA)
# }

Run the code above in your browser using DataLab