R !!!udpipe {{outline}} ---- https://bnosac.github.io/udpipe/en/ Universal Dependencies https://universaldependencies.org/#ud-treebanks !!特徴 * PythonやJavaなしで、Rのみで実行可能 !!インストール {{pre ```{r, eval=F} install.packages("udpipe") ``` ```{r} library(udpipe) library(dplyr) library(ggplot2) library(stringr) ``` }} !!使用例 {{pre library(ggraph) library(ggplot2) library(igraph) library(textplot) bun <- udpipe("What kind of sports do you like?", "english") bun textplot_dependencyparser(bun) }} {{ref_image bun.png}}