| combine {textshape} | R Documentation |
Combine (paste) elements (vectors,
lists, or data.frames) together
with collapse = TRUE.
combine(x, ...) ## Default S3 method: combine(x, fix.punctuation = TRUE, ...) ## S3 method for class 'data.frame' combine(x, text.var = TRUE, ...)
x |
A |
fix.punctuation |
logical If |
text.var |
The name of the text variable. |
... |
Ignored. |
Returns a vector (if given a list/vector) or an expanded
data.table with elements pasted together.
(x <- split_token(DATA[["state"]][1], FALSE)) combine(x) (x2 <- split_token(DATA[["state"]], FALSE)) combine(x2) (x3 <- split_sentence(DATA)) ## without dropping the non-group variable column combine(x3) ## Dropping the non-group variable column combine(x3[, 1:5, with=FALSE])