transcripts_update_fulltexts {act} | R Documentation |
Update full texts
Description
Creates/updates the full texts of the transcripts in a corpus. The full text may be created in two different ways:
The contents of a transcription will be joined consecutively based on the time information.
The contents of each tier will be joined consecutively, and then the next tier will be joined.
Usage
transcripts_update_fulltexts(
x,
searchMode = c("fulltext", "fulltext.bytier", "fulltext.bytime"),
transcriptNames = NULL,
tierNames = NULL,
forceUpdate = FALSE
)
Arguments
x |
Corpus object. |
searchMode |
Character string; Which full text should be created; accepts the following values: |
transcriptNames |
Vector of character strings; Names of the transcripts you want to update; leave empty if you want to process all transcripts that need an update. |
tierNames |
Vector of character strings; Names of the tiers to include in the fulltext. |
forceUpdate |
Logical; If |
Value
Corpus object.
Examples
library(act)
examplecorpus <- act::transcripts_update_fulltexts(x=examplecorpus)