View source: R/transmute_nse.R
| transmute_nse | R Documentation |
transmute a data frame by the transmuteterms from ....
transmute_nse( .data, ..., transmute_nse_env = parent.frame(), transmute_nse_warn = TRUE )
.data |
data.frame |
... |
stringified expressions to transmute by. |
transmute_nse_env |
environment to work in. |
transmute_nse_warn |
logical, if TRUE warn about possible name collisions. |
.data with altered columns(other columns dropped).
transmute_se, transmute, transmute_at, :=
datasets::iris %.>%
transmute_nse(., Sepal_Long := Sepal.Length >= 2 * Sepal.Width,
Petal_Short := Petal.Length <= 3.5) %.>%
summary(.)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.