pos {RmecabKo} | R Documentation |
pos
returns part-of-speech (POS) tagged morpheme of Korean phrases.
pos(phrase, join = TRUE)
phrase |
Character vector. |
join |
Boolean. |
This is a basic function of part-of-speech tagging by mecab-ko.
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.
## Not run:
pos(c("Some Korean Phrases"))
pos(c("Some Korean Phrases"), join=FALSE)
## End(Not run)