as.yaml: Convert quanteda dictionary objects to the YAML format

Description Usage Arguments Value Examples

View source: R/dictionaries.R

Description

Converts a quanteda dictionary object constructed by the dictionary function into the YAML format. The YAML files can be edited in text editors and imported into quanteda again.

Usage

1

Arguments

x

a dictionary object

Value

as.yaml a dictionary in the YAML format, as a character object

Examples

1
2
3
4
5
6
7
## Not run: 
dict <- dictionary(list(one = c("a b", "c*"), two = c("x", "y", "z??")))
cat(yaml <- as.yaml(dict))
cat(yaml, file = (yamlfile <- paste0(tempfile(), ".yml")))
dictionary(file = yamlfile)

## End(Not run)

koheiw/quanteda.core documentation built on Sept. 21, 2020, 3:44 p.m.