cabocha: Japanese Dependency Structure Analyze using CaboCha

Description Usage Arguments Details Value Examples

Description

The cabocha method of jaNLP class for Japanese Dependency Structure Analyze

Usage

1
2
## S4 method for signature 'jaNLP'
cabocha(str = "")

Arguments

str

input single character vector for CaboCha analysis

Details

CaboCha is Japanese Dependency Structure Analyzer created by Taku Kudo
https://code.google.com/p/cabocha/

The cabocha method using CaboCha-Option "-f1 -n1"

Value

chunk_id

chunk_id

link

dependency-link(chunk_id)

surface

<e8><a1><a8><e5><b1><a4><e5><bd><a2>

feature

<e5><93><81><e8><a9><9e>,<e5><93><81><e8><a9><9e><e7><b4><b0><e5><88><86><e9><a1><9e>1,<e5><93><81><e8><a9><9e><e7><b4><b0><e5><88><86><e9><a1><9e>2,<e5><93><81><e8><a9><9e><e7><b4><b0><e5><88><86><e9><a1><9e>3,<e6><b4><bb><e7><94><a8><e5><bd><a2>,<e6><b4><bb><e7><94><a8><e5><9e><8b>,<e5><8e><9f><e5><bd><a2>,<e8><aa><ad><e3><81><bf>,<e7><99><ba><e9><9f><b3>

ne

Named Entity(based on IREX)

head_pos

head position

func_pos

function(function word) position

score

dependency score

Examples

1
2
3
library(RjaNLP)
example <- JaNLP$new(text = "<e3><81><99><e3><82><82><e3><82><82><e3><82><82><e3><82><82><e3><82><82><e3><82><82><e3><82><82><e3><82><82><e3><81><ae><e3><81><86><e3><81><a1>")
res.cabocha <- example$cabocha()

yamano357/rJaNLP documentation built on May 4, 2019, 2:28 p.m.