Description Usage Arguments Value Examples
Merges several concordances into one large concordance
1 2 | merge_conc(...,
show_warnings = TRUE)
|
... |
two or more arguments that represent concordances |
show_warnings |
boolean value; if set to |
The function merge_conc
returns an object of the class conc
.
1 2 3 4 5 6 | (cd_1 <- conc_re('\\w+', 'A first very small corpus.', as_text = TRUE))
as.data.frame(cd_1)
(cd_2 <- conc_re('\\w+', 'A second very small corpus.', as_text = TRUE))
(cd_3 <- conc_re('\\w+', 'A third very small corpus.', 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.