unite {bupaR} | R Documentation |
Unite multiple columns into one.
Description
Unite multiple columns into one.
Usage
unite(data, col, ..., sep = "_", remove = TRUE, na.rm = FALSE)
## S3 method for class 'eventlog'
unite(data, col, ..., sep = "_", remove = T)
## S3 method for class 'activtylog'
unite(data, col, ..., sep = "_", remove = T)
## S3 method for class 'grouped_eventlog'
unite(data, col, ..., sep = "_", remove = T)
Arguments
data |
Eventlog |
col |
The name of the new column, as a string or symbol. This argument is passed by expression and supports
quasiquotation (you can unquote strings
and symbols). The name is captured from the expression with
|
... |
Additional arguments passed to tidyr |
sep |
Separator to use between values. |
remove |
If |
na.rm |
If |
Methods (by class)
-
unite(eventlog)
: Unite columns in eventlog -
unite(activtylog)
: Unite columns in activitylog -
unite(grouped_eventlog)
: Unite columns in grouped eventlog