Description Usage Arguments Value See Also Examples
Get or set the document names of a corpus, tokens, or dfm object.
1 2 3 |
x |
the object with docnames |
value |
a character vector of the same length as |
docnames
returns a character vector of the document names
docnames <-
assigns new values to the document names of an object.
docnames can only be character, so any non-character value assigned to be a
docname will be coerced to mode character
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # get and set doument names to a corpus
corp <- data_corpus_inaugural
docnames(corp) <- char_tolower(docnames(corp))
# get and set doument names to a tokens
toks <- tokens(data_corpus_inaugural)
docnames(toks) <- char_tolower(docnames(toks))
# get and set doument names to a dfm
dfmat <- dfm(data_corpus_inaugural[1:5])
docnames(dfmat) <- char_tolower(docnames(dfmat))
# reassign the document names of the inaugural speech corpus
docnames(data_corpus_inaugural) <- paste("Speech", 1:ndoc(data_corpus_inaugural), sep="")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.