Description Usage Arguments Value See Also Examples
Writes an object of the class conc
to file.
1 2 3 4 | write_conc(x,
file = "",
sep = "\t",
file_encoding = "UTF-8")
|
x |
the concordance that is to be written to file. |
file |
name of the output file. |
sep |
the field separator that is to be used in the output file. |
file_encoding |
the encoding that is to be used in the output file. |
The function write_conc
(invisibly) returns the value of
its first argument, viz. x
.
See also read_conc
.
1 2 3 4 | cd <- conc_re('\\w+', 'A very small corpus.', as_text = TRUE)
write_conc(cd, "example_data.csv")
(cd_2 <- read_conc("example_data.csv"))
as.data.frame(cd_2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.