Description Usage Arguments Value See Also Examples
transmute a data frame by the transmuteTerms. Accepts arbitrary text as transmuteTerms to allow forms such as "Sepal.Length >= 2 * Sepal.Width".
1 | transmute_se(.data, transmuteTerms, env = parent.frame(), warn = TRUE)
|
.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. |
.data transumuted by transmuteTerms.
1 2 3 4 | datasets::iris %.>%
transmute_se(., qae(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.