Description Usage Arguments Value See Also Examples
View source: R/transmute_nse.R
transmute a data frame by the transmuteterms from ...
.
1 2 3 4 5 6 | 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
, :=
1 2 3 4 | 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.