quanteda (version 1.4.1)

metacorpus: Get or set corpus metadata

Description

Get or set the corpus-level metadata in a corpus object.

Usage

metacorpus(x, field = NULL)

metacorpus(x, field) <- value

Arguments

x

a corpus object

field

metadata field name(s); if NULL (default), return all metadata names

value

new value of the corpus metadata field

Value

For metacorpus, a named list of the metadata fields in the corpus.

For metacorpus <-, the corpus with the updated metadata.

Examples

Run this code
# NOT RUN {
metacorpus(data_corpus_inaugural)
metacorpus(data_corpus_inaugural, "source")
metacorpus(data_corpus_inaugural, "citation") <- "Presidential Speeches Online Project (2014)."
metacorpus(data_corpus_inaugural, "citation")
# }

Run the code above in your browser using DataCamp Workspace