unite {tidyseurat} | R Documentation |
Unite multiple columns into one by pasting strings together
Description
Convenience function to paste together multiple columns into one.
Usage
## S3 method for class 'Seurat'
unite(data, col, ..., sep = "_", remove = TRUE, na.rm = FALSE)
Arguments
data |
A data frame. |
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
|
... |
< |
sep |
Separator to use between values. |
remove |
If |
na.rm |
If |
Value
'tidyseurat'
See Also
separate()
, the complement.
Examples
data(pbmc_small)
pbmc_small |> unite(
col="new_col",
c("orig.ident", "groups"))
[Package tidyseurat version 0.8.0 Index]