Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.8 KB

README.md

File metadata and controls

36 lines (21 loc) · 1.8 KB

NIA(National Information Society Agency) Dictionary

License: CC BY SA

The Korean dictionary for morphological analysis, NIADic, was compiled as an enhancement of the original KoNLP, to help users get more accurate and stable result from text analysis. With the unstinted support from MSIP(Ministry of Science, ICT and Future Planning), NIADic was developed by NIA (National Information Society Agency) with the leading contribution from the original developer, Heewon Jeon. NIA also greatly acknowledges National Institute of the Korean Language (NIKL) as providing generously the source of Korean word dictionary.

To install from GitHub, use

install.packages('devtools')
library(devtools)
install_github('haven-jeon/NIADic/NIADic', build_vignettes = TRUE)

To download each dictionary with text format.

install.packages('devtools')
devtools::install_github('haven-jeon/NIADic/NIADic', build_vignettes = TRUE)
library(NIADic)
#insighter <- get_dic('insighter')
#sejong <- get_dic('sejong')
woorimal <- get_dic('woorimalsam')
head(woorimal)
write.csv(woorimal, file='woorimaldic.csv', fileEncoding='UTF-8', row.names=F)

We will provide this package from NIA package repository after development.