pos {RmecabKo}R Documentation

POS tagging by mecab-ko

Description

pos returns part-of-speech (POS) tagged morpheme of Korean phrases.

Usage

pos(phrase, join = TRUE)

Arguments

phrase

Character vector.

join

Boolean.

Details

This is a basic function of part-of-speech tagging by mecab-ko.

Value

List of POS tagged morpheme will be returned in conjoined character vecter form. Element name of the list are original phrases. If join=FALSE, it returns list of morpheme with named with tags.

See examples in Github.

Examples

## Not run: 
pos(c("Some Korean Phrases"))
pos(c("Some Korean Phrases"), join=FALSE)

## End(Not run)


[Package RmecabKo version 0.1.6.2 Index]