KoNLP R 설치 Windows R 버전

KoNLPR는  형태소 분석기 이다.   사내에 방화벽이 없다면 아래와 같이 git-hub로 설치가 가능 하다. 


# 아래 패키지를 설치 하신 후에
install.packages("multilinguer")

# 의존성을 설치 한다. 
install.packages(c('stringr', 'hash', 'tau', 'Sejong', 'RSQLite', 'devtools'), type = "binary")

# Git hub로 설치 한다. 
install.packages("remotes")
remotes::install_github('haven-jeon/KoNLP', upgrade = "never", INSTALL_opts=c("--no-multiarch"))

# KoNLP 예제 

library(KoNLP)
## Checking user defined dictionary!
sentence <- '아버지가 방에 스로륵 들어가신다.'

extractNoun(sentence)
## [1] "아버지" "방"     "스로륵"

댓글 없음:

댓글 쓰기

css cheat sheet 클래스 선택자, margin(마진), display , center 조정 간단한 구성 요소

 앞에서는 html의 간단한 sheet를 소개 하였습니다.   html은  주로 골격을 나타나는 것이라, 디자인을 하는데는 css로 하여야 합니다.  아래 코드와 같이 css 관련 하여 매우 간단하게 코딩 하겠습니다.  body 부분의 css 코딩  ...