mutate-table.express {table.express} | R Documentation |
Add or update columns
Description
Add or update columns of a data.table::data.table, possibly by reference using
:=
.
Usage
## S3 method for class 'ExprBuilder'
mutate(
.data,
...,
.sequential = FALSE,
.unquote_names = TRUE,
.parse = getOption("table.express.parse", FALSE),
.chain = getOption("table.express.chain", TRUE)
)
## S3 method for class 'EagerExprBuilder'
mutate(.data, ..., .parent_env = rlang::caller_env())
## S3 method for class 'data.table'
mutate(.data, ...)
Arguments
.data |
An instance of ExprBuilder. |
... |
Mutation clauses. |
.sequential |
If |
.unquote_names |
Passed to |
.parse |
Logical. Whether to apply |
.chain |
Logical. Should a new frame be automatically chained to the expression if the clause being set already exists? |
.parent_env |
See |
Details
To see more examples, check the vignette, or the table.express-package entry.
Examples
data("mtcars")
data.table::as.data.table(mtcars) %>%
start_expr %>%
mutate(mpg_squared = mpg ^ 2)
[Package table.express version 0.4.2 Index]