transmute_se: transmute standard interface.

Description Usage Arguments Value See Also Examples

View source: R/transmute_se.R

Description

transmute a data frame by the transmuteTerms. Accepts arbitrary text as transmuteTerms to allow forms such as "Sepal.Length >= 2 * Sepal.Width".

Usage

1
transmute_se(.data, transmuteTerms, env = parent.frame(), warn = TRUE)

Arguments

.data

data.frame

transmuteTerms

character vector of column expressions to transmute by.

env

environment to work in.

warn

logical, if TRUE warn about possible name collisions.

Value

.data transumuted by transmuteTerms.

See Also

transmute, transmute_at, :=

Examples

1
2
3
4
datasets::iris %.>%
  transmute_se(., qae(Sepal_Long := Sepal.Length >= 2 * Sepal.Width,
                      Petal_Short := Petal.Length <= 3.5)) %.>%
  summary(.)

seplyr documentation built on Sept. 5, 2021, 5:12 p.m.