| mc_metadata {multicastR} | R Documentation |
Access the Multi-CAST metadata
Description
mc_metadata downloads a table with metadata on the texts and speakers
in the Multi-CAST collection from the servers of the University of Bamberg.
Usage
mc_metadata(vkey = NULL)
Arguments
vkey |
A four-digit number specifying the requested version of the
metadata. Must be one of the version keys listed in the first column of
|
Value
A data.frame containing metadata on the Multi-CAST
collection. The table has the following eight columns:
[, 1] corpusThe name of the corpus.
[, 2] textThe title of the text.
[, 3] typeThe text type, either
TN'traditional narrative',AN'autobiographical narrative', orSN'stimulus-based narrative'.[, 4] recordedThe year (YYYY) the text was recorded.
[, 5] speakerThe identifier for the speaker.
[, 6] genderThe speaker's gender.
[, 7] ageThe speaker's age at the time of recording. Approximate values are prefixed with a
c.[, 8] bornThe speaker's birth year (YYY). Approximate values are prefixed with a
c.
See Also
multicast, mc_index,
mc_referents, mc_clauses
Examples
## Not run:
# retrieve the most recent version of the Multi-CAST metadata
mc_metadata()
# retrieve the lists of referents published in January 2021
mc_metadata(2101)
# join the metadata to a table with annotation values
mc <- multicast()
merge(mc, mc_metadata(),
by = c("corpus", "text"))
## End(Not run)