| merge_conc | R Documentation |
This function merges multiple objects of class conc into one conc object.
merge_conc(..., show_warnings = TRUE)
... |
Two or more objects of class |
show_warnings |
Logical. If |
An object of class conc.
(cd_1 <- conc('A first very small corpus.', '\\w+', as_text = TRUE))
as.data.frame(cd_1)
(cd_2 <- conc('A second very small corpus.', '\\w+', as_text = TRUE))
(cd_3 <- conc('A third very small corpus.', '\\w+', as_text = TRUE))
(cd <- merge_conc(cd_1, cd_2, cd_3))
as.data.frame(cd)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.