Unite multiple columns into one.
unite(data, col, ..., sep = "_", remove = TRUE, na.rm = FALSE)# S3 method for eventlog
unite(data, col, ..., sep = "_", remove = T)
# S3 method for activtylog
unite(data, col, ..., sep = "_", remove = T)
# S3 method for grouped_eventlog
unite(data, col, ..., sep = "_", remove = T)
Eventlog
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
rlang::ensym()
(note that this kind of interface where
symbols do not represent actual objects is now discouraged in the
tidyverse; we support it here for backward compatibility).
Additional arguments passed to tidyr
Separator to use between values.
If TRUE
, remove input columns from output data frame.
If TRUE
, missing values will be removed prior to uniting
each value.
unite(eventlog)
: Unite columns in eventlog
unite(activtylog)
: Unite columns in activitylog
unite(grouped_eventlog)
: Unite columns in grouped eventlog