Learn R Programming

corpustools (version 0.5.1)

refresh_tcorpus: Refresh a tCorpus object using the current version of corpustools

Description

As an R6 class, tCorpus contains its methods within the class object (i.e. itself). Therefore, if you use a new version of corpustools with an older tCorpus object (e.g., stored as a .rds. file), then the methods are not automatically updated. You can then use refresh_tcorpus() to reinitialize the tCorpus object with the current version of corpustools.

Usage

refresh_tcorpus(tc)

Value

a tCorpus object

Arguments

tc

a tCorpus object

Examples

Run this code
tc = create_tcorpus(c('First text', 'Second text'))
refresh_tcorpus(tc)

Run the code above in your browser using DataLab