summary.corpus | R Documentation |
Displays information about a corpus, including attributes and metadata such as date of number of texts, creation and source.
## S3 method for class 'corpus'
summary(object, n = 100, tolower = FALSE, showmeta = TRUE, ...)
object |
corpus to be summarized |
n |
maximum number of texts to describe, default=100 |
tolower |
convert texts to lower case before counting types |
showmeta |
set to |
... |
additional arguments passed through to |
summary(data_corpus_inaugural)
summary(data_corpus_inaugural, n = 10)
corp <- corpus(data_char_ukimmig2010,
docvars = data.frame(party=names(data_char_ukimmig2010)))
summary(corp, showmeta = TRUE) # show the meta-data
sumcorp <- summary(corp) # (quietly) assign the results
sumcorp$Types / sumcorp$Tokens # crude type-token ratio
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.