mergeUserDic: appending or replacing with new data.frame

Description Usage Arguments Examples

Description

appending new dictionary to current dictionary. replaceing current dictionary with new dictionary.

Usage

1
mergeUserDic(newUserDic, append = TRUE, verbose = FALSE, ask = FALSE)

Arguments

newUserDic

new user dictionary as data.frame

append

append or replacing

verbose

see detail error logs

ask

ask to backup

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
## This codes can not be run if you don't have encoding system 
## which can en/decode Hangul(ex) CP949, EUC-KR, UTF-8). 
dicpath <- file.path(system.file(package="Sejong"), "dics", "handic.zip")
conn <- unz(dicpath, file.path("data","kE","dic_user2.txt"))
newdic <- read.csv(conn, sep="\t", header=FALSE, fileEncoding="UTF-8", stringsAsFactors=FALSE)
mergeUserDic(newdic)
## backup merged new dictionary
backupUsrDic(ask=FALSE)
## restore from backup directory
restoreUsrDic(ask=FALSE)
## reloading new dictionary
reloadAllDic()
## End(Not run)

KoNLP documentation built on May 1, 2019, 9:25 p.m.