powered by
Clause for subsetting rows.
where(.data, ...)# S3 method for ExprBuilder where(.data, ..., .collapse = `&`, .parse = getOption("table.express.parse", FALSE), .chain = getOption("table.express.chain", TRUE))
# S3 method for ExprBuilder where(.data, ..., .collapse = `&`, .parse = getOption("table.express.parse", FALSE), .chain = getOption("table.express.chain", TRUE))
The input data.
Arguments for the specific methods.
A boolean function which will be used to "concatenate" all conditions in ....
...
Logical. Whether to apply rlang::parse_expr() to obtain the expressions.
rlang::parse_expr()
Logical. Should a new frame be automatically chained to the expression if the clause being set already exists?
To see more examples, check the vignette, or the table.express-package entry.
# NOT RUN { data("mtcars") data.table::as.data.table(mtcars) %>% start_expr %>% where(vs == 0, am == 1) # }
Run the code above in your browser using DataLab