Functions that apply expressions to the columns of input objects and return atomic vectors e.g., numeric (double), integer, character, logical.
vapc_chr: Iterate over input columns and return character(s)
vapc_dbl: Iterate over input columns and return numeric(s)
vapc_lgl: Iterate over input columns and return logical(s)
vapc_int: Iterate over input columns and return integer(s)
vapc_chr(.data, .f, ...) vapc_dbl(.data, .f, ...) vapc_lgl(.data, .f, ...) vapc_int(.data, .f, ...)
.data | Input object–must be two-dimensional (e.g., matrix, data.frame) –over which the second dimension (columns) will be iterated |
---|---|
.f | Action to apply to each element of
|
... | Other values passed to function call. |
A character vector
A numeric vector
A logical vector
An integer vector