Description Usage Arguments Value See Also Examples
mc_referents downloads a tabular list of all discourse referents
occuring in those texts in the Multi-CAST collection that have been annotated
with the RefIND scheme (Schiborr et al. 2018). The data are downloaded from
the servers of University of Bamberg.
1 | mc_referents(vkey = NULL)
|
vkey |
A four-digit number specifying the requested version of the list
of referents. Must be one of the version keys listed in the first column of
|
A data.frame containing a list of referents for all
texts with RefIND annotations in the Multi-CAST collection. The table has
the following eight columns:
[, 1] corpusThe name of the corpus.
[, 2] textThe title of the text.
[, 3]
refindThe four-digit referent index, unique to each referent in a text.
[, 4] labelThe label used for the referent.
[,
5] descriptionA short description of the referent.
[, 6]
classThe semantic class of the referent. Legend: hum = human,
anm = animate, inm = inanimate, bdp = body part,
mss = mass, loc = location, tme = time, abs =
abstract.
[, 7] relationsRelations of the referent to other
referents. Legend: < = set member of (partial co-reference),
> = includes (split antecedence), M = part-whole.
[, 8] notesAnnotators' notes on the referent and its properties.
multicast, mc_index,
mc_metadata, mc_clauses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
# retrieve the most recent version of the Multi-CAST list of referents
mc_referents()
# retrieve the lists of referents published in January 2021
mc_referents(2021)
# join the list of referents to a table with annotation values
mc <- multicast()
merge(mc, mc_referents(),
by = c("corpus", "text", "refind"),
all.x = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.