Learn R Programming

koRpus (version 0.04-40)

kRp.POS.tags: Get elaborated word tag definitions

Description

This function can be used to get a set of part-of-speech (POS) tags for a given language. These tag sets should conform with the ones used by TreeTagger.

Usage

kRp.POS.tags(lang = get.kRp.env(lang = TRUE),
    list.classes = FALSE, list.tags = FALSE,
    tags = c("words", "punct", "sentc"))

Arguments

lang
A character string defining a language (see details for valid choices).
list.classes
Logical, if TRUE only the known word classes for the chosen language will me returned.
list.tags
Logical, if TRUE only the POS tags for the chosen language will me returned.
tags
A character vector with at least one of "words", "punct" or "sentc".

Value

  • If list.classes=FALSE and list.tags=FALSE returns a matrix with word tag definitions of the given language. The matrix has three columns: [object Object],[object Object],[object Object] Otherwise a vector with the known word classes or POS tags for the chosen language (and probably tag subset) will be returned. If both list.classes and list.tags are TRUE, still only the POS tags will be returned.

Details

Currently supported languages are:
  • "de"--- German, according to the STTS guidelines (Schiller, Teufel, Stockert, & Thielen, 1995)
  • "en"--- English, according to the Penn Treebank guidelines (Santorini, 1991)
  • "es"--- Spanish, according tohttp://www.ims.uni-stuttgart.de/ftp/pub/corpora/spanish-tagset.txt
  • "fr"--- French, according tohttp://www.ims.uni-stuttgart.de/~schmid/french-tagset.html
  • "it"--- Italian, according toftp://ftp.ims.uni-stuttgart.de/pub/corpora/italian-tagset.txt
  • "ru"--- Russian, according to the MSD tagset by Sharoff, Kopotev, Erjavec, Feldman & Divjak (2008)
For the internal tokenizer a small subset of tags is also defined, available through lang="kRp". If you don't know the language your text was written in, the function guess.lang should be able to detect it.

With the element tags you can specify if you want all tag definitions, or a subset, e.g. tags only for punctuation and sentence endings (that is, you need to call for both "punct" and "sentc" to get all punctuation tags).

The function is not so much intended to be used directly, but it is called by several other functions internally. However, it can still be useful to directly examine available POS tags.

References

Santorini, B. (1991). Part-of-Speech Tagging Guidelines for the Penn Treebank Project. URL: http://www.ims.uni-stuttgart.de/projekte/corplex/TreeTagger/Penn-Treebank-Tagset.pdf

Schiller, A., Teufel, S., Stockert, C. & Thielen, C. (1995). Vorl"aufge Guidelines f"ur das Tagging deutscher Textcorpora mit STTS. URL: http://www.ims.uni-stuttgart.de/ftp/pub/corpora/stts_guide.pdf

Sharoff, S., Kopotev, M., Erjavec, T., Feldman, A. & Divjak, D. (2008). Designing and evaluating Russian tagsets. In: Proc. LREC 2008, Marrakech. URL: http://corpus.leeds.ac.uk/mocky/

See Also

get.kRp.env

Examples

Run this code
tags.de <- kRp.POS.tags("de")

Run the code above in your browser using DataLab