Learn R Programming

tidytable (version 0.6.2)

transmute.: Add new variables and drop all others

Description

Unlike mutate.(), transmute.() keeps only the variables that you create

Usage

transmute.(.df, ..., .by = NULL)

Arguments

.df

A data.frame or data.table

...

Columns to create/modify

.by

Columns to group by

Examples

Run this code
# NOT RUN {
test_df <- data.table(
  a = 1:3,
  b = 4:6,
  c = c("a","a","b")
)

test_df %>%
  transmute.(double_a = a * 2)
# }

Run the code above in your browser using DataLab