50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

polmineR (version 0.8.9)

get_template: Get template for formatting full text output.

Description

Templates are used to format the markdown/html of fulltext. get_template() loads and parses the content of the JSON template file, if it is found in the slot "template" of .Object.

Usage

get_template(.Object, ...)

# S4 method for character get_template(.Object, warn = FALSE)

# S4 method for corpus get_template(.Object, warn = FALSE)

# S4 method for subcorpus get_template(.Object, warn = FALSE)

Value

If a template is available, a list with the parsed content of the template file, otherwise NULL.

Arguments

.Object

A corpus, subcorpus or partition object, or a length-one character vector with a corpus ID.

...

Further arguments.

warn

A logical value, whether to issue a warning if template is not available. Defaults to FALSE.

Details

To learn how to write templates, consult the sample files in the folder "templates" of the installed package - see examples.

Examples

Run this code
use("polmineR")
corpus("GERMAPARLMINI") %>%
  get_template()

# template files included in the package   
template_dir <- system.file(package = "polmineR", "templates")
list.files(template_dir)

Run the code above in your browser using DataLab