tCorpus$context | R Documentation |
Depending on the purpose, the context of an analysis can be the document level or sentence level. the tCorpus$context() method offers a convenient way to get the context id of tokens for different settings.
context_level |
Select whether the context is document or sentence level |
with_labels |
Return context as only ids (numeric, starting at 1) or with labels (factor) |
Usage:
## R6 method for class tCorpus. Use as tc$method (where tc is a tCorpus object).
data(context_level = c('document','sentence'), with_labels = T)
tc <- create_tcorpus(c('Text one first sentence. Text one second sentence', 'Text two'),
split_sentences = TRUE)
doc <- tc$context() ## default context is doc_id (document level)
doc
sent <- tc$context('sentence') ## can specify sentence level
sent
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.